aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/Root.vue
diff options
context:
space:
mode:
authorZero~Informatique2019-12-20 17:47:04 +0100
committerZero~Informatique2019-12-20 23:22:56 +0100
commit7ae68f079ddfb74c9a1b17c4f30dfe4c258d4a9f (patch)
treecb5e30534d9e564c311d626bba7e8d9ec0ea0f60 /viewer/src/views/Root.vue
parentc9264b0a0a7e1cb92ef7d9a391cee2c94376cff3 (diff)
downloadldgallery-7ae68f079ddfb74c9a1b17c4f30dfe4c258d4a9f.tar.gz
Viewer project foundations
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>