wip
This commit is contained in:
parent
4fce5d8066
commit
9d81d06853
26 changed files with 844 additions and 174 deletions
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);
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue