mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:13:08 +02:00
16 lines
277 B
TypeScript
16 lines
277 B
TypeScript
|
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);
|
||
|
}
|
||
|
});
|