mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 04:09:29 +02:00
23 lines
290 B
JavaScript
23 lines
290 B
JavaScript
export default (await import('vue')).defineComponent({
|
|
data() {
|
|
return {
|
|
Object: {
|
|
bg: "value",
|
|
nickname: "value",
|
|
icons: {},
|
|
textTacholgy: { text1: "text2" },
|
|
},
|
|
name: 'HelpPage',
|
|
components: {
|
|
HelpComponent
|
|
}
|
|
};
|
|
|
|
},
|
|
components: {
|
|
HeaderComponent,
|
|
AsideBarComponent,
|
|
HelpComponent,
|
|
},
|
|
});
|