summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/MyModule.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/MyModule.vue')
-rw-r--r--webapp/src/components/MyModule.vue50
1 files changed, 0 insertions, 50 deletions
diff --git a/webapp/src/components/MyModule.vue b/webapp/src/components/MyModule.vue
deleted file mode 100644
index 67aa859..0000000
--- a/webapp/src/components/MyModule.vue
+++ /dev/null
@@ -1,50 +0,0 @@
-<i18n>
-{
- "en": {
- "hello": "hello world!",
- "test": {
- "abc": "abc"
- }
- },
- "de": {
- "hello": "Hallo Welt!",
- "test": {
- "abc": "abc"
- }
- }
-}
-</i18n>
-
-<template>
- <div class="my-module">
- </div>
-</template>
-
-<script>
-
-export default {
- name: 'MyModule',
- data () {
- return {
- msg: 'Welcome to Your Vue.js App'
- }
- },
- methods: {
- logout () {
- localStorage.removeItem('apiToken')
- this.$router.push('/login')
- }
- }
-}
-</script>
-
-<!-- Add "scoped" attribute to limit CSS to this component only -->
-<style scoped>
-
-.my-module {
- display: flex;
- flex-direction: column;
- align-items: center;
-}
-
-</style>