Files
jnpf_app/components/Jnpf/Divider/index.vue

13 lines
202 B
Vue
Raw Normal View History

2026-01-04 11:09:06 +08:00
<template>
<u-divider half-width="200" height="80">{{content}}</u-divider>
</template>
<script>
export default {
name: 'jnpf-divider',
props: {
content: {
default: ''
}
},
}
</script>