mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-19 18:15:47 +02:00
wip
This commit is contained in:
15
src/client/components/global/i18n.ts
Normal file
15
src/client/components/global/i18n.ts
Normal 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);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user