diff options
author | Zero~Informatique | 2019-12-20 17:47:04 +0100 |
---|---|---|
committer | Zero~Informatique | 2019-12-20 23:22:56 +0100 |
commit | 7ae68f079ddfb74c9a1b17c4f30dfe4c258d4a9f (patch) | |
tree | cb5e30534d9e564c311d626bba7e8d9ec0ea0f60 /viewer/src/views/Root.vue | |
parent | c9264b0a0a7e1cb92ef7d9a391cee2c94376cff3 (diff) | |
download | ldgallery-7ae68f079ddfb74c9a1b17c4f30dfe4c258d4a9f.tar.gz |
Viewer project foundations
Diffstat (limited to 'viewer/src/views/Root.vue')
-rw-r--r-- | viewer/src/views/Root.vue | 18 |
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"> | ||
6 | import { Component, Vue } from "vue-property-decorator"; | ||
7 | |||
8 | @Component | ||
9 | export default class Root extends Vue {} | ||
10 | </script> | ||
11 | |||
12 | <style scoped lang="scss"> | ||
13 | div { | ||
14 | display: flex; | ||
15 | align-items: center; | ||
16 | justify-content: center; | ||
17 | } | ||
18 | </style> | ||