2022-09-09 16:23:04 +00:00
|
|
|
<template>
|
2022-09-09 16:38:12 +00:00
|
|
|
<v-app>
|
|
|
|
<v-main>
|
2022-09-11 23:28:37 +00:00
|
|
|
<TitleBar>
|
|
|
|
<div v-html="title_html" />
|
|
|
|
</TitleBar>
|
2022-09-09 22:41:50 +00:00
|
|
|
<HelloWorld />
|
2022-09-09 16:38:12 +00:00
|
|
|
</v-main>
|
|
|
|
</v-app>
|
2022-09-09 16:23:04 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-09-11 23:28:37 +00:00
|
|
|
import { Component, Vue } from "vue-property-decorator";
|
2022-09-09 22:41:50 +00:00
|
|
|
import HelloWorld from "./components/HelloWorld.vue";
|
|
|
|
import TitleBar from "./components/TitleBar.vue";
|
2022-09-09 16:23:04 +00:00
|
|
|
|
2022-09-11 23:28:37 +00:00
|
|
|
@Component({
|
2022-09-09 16:23:04 +00:00
|
|
|
components: {
|
|
|
|
HelloWorld,
|
2022-09-09 22:41:50 +00:00
|
|
|
TitleBar,
|
2022-09-09 16:23:04 +00:00
|
|
|
},
|
2022-09-11 23:28:37 +00:00
|
|
|
})
|
|
|
|
export default class App extends Vue {
|
|
|
|
private title_html = "<h1>changeme</h1>";
|
|
|
|
}
|
2022-09-09 16:38:12 +00:00
|
|
|
</script>
|