This commit is contained in:
syuilo 2020-12-26 10:01:32 +09:00
parent 4fce5d8066
commit 9d81d06853
26 changed files with 844 additions and 174 deletions

View file

@ -0,0 +1,15 @@
import { h, Fragment, defineComponent } from 'vue';
import type { SetupContext, VNodeChild, RenderFunction } from 'vue';
export default defineComponent({
props: {
src: {
type: String,
required: true
},
},
render() {
// TODO
return h('span', this.src);
}
});