Files
SaaS-lib/lib/component/VNode/v-node.ts

14 lines
207 B
TypeScript
Raw Normal View History

2024-05-15 17:29:42 +08:00
import { defineComponent } from 'vue';
export default defineComponent({
name: 'NsVNode',
props: {
content: {
type: [Object, String],
},
},
render() {
return this.content;
},
});