Files
SaaS-lib/lib/component/VNode/v-node.ts
xuziqiang d0155dbe3c push
2024-05-15 17:29:42 +08:00

14 lines
207 B
TypeScript

import { defineComponent } from 'vue';
export default defineComponent({
name: 'NsVNode',
props: {
content: {
type: [Object, String],
},
},
render() {
return this.content;
},
});