13 lines
202 B
Vue
Raw Normal View History

2025-06-30 09:38:03 +08:00
<template>
<u-divider half-width="200" height="80">{{content}}</u-divider>
</template>
<script>
export default {
name: 'jnpf-divider',
props: {
content: {
default: ''
}
},
}
</script>