aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/Root.vue
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/views/Root.vue')
-rw-r--r--viewer/src/views/Root.vue18
1 files changed, 18 insertions, 0 deletions
diff --git a/viewer/src/views/Root.vue b/viewer/src/views/Root.vue
new file mode 100644
index 0000000..384dcbe
--- /dev/null
+++ b/viewer/src/views/Root.vue
@@ -0,0 +1,18 @@
1<template>
2 <div>Hello World!</div>
3</template>
4
5<script lang="ts">
6import { Component, Vue } from "vue-property-decorator";
7
8@Component
9export default class Root extends Vue {}
10</script>
11
12<style scoped lang="scss">
13div {
14 display: flex;
15 align-items: center;
16 justify-content: center;
17}
18</style>