push
This commit is contained in:
13
lib/component/VNode/v-node.ts
Normal file
13
lib/component/VNode/v-node.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { defineComponent } from 'vue';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'NsVNode',
|
||||
props: {
|
||||
content: {
|
||||
type: [Object, String],
|
||||
},
|
||||
},
|
||||
render() {
|
||||
return this.content;
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user