summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUdo Walter2018-07-30 04:29:20 +0200
committerUdo Walter2018-07-30 04:29:20 +0200
commitf24cd34a306c38931067ed9752fed0575d591972 (patch)
tree864e6e2b4d7268780c812b7d88037a500c1bd99d
parent[server/external-backends] Implemented checkConnection of iDoIT. Simple auth ... (diff)
downloadbas-f24cd34a306c38931067ed9752fed0575d591972.tar.gz
bas-f24cd34a306c38931067ed9752fed0575d591972.tar.xz
bas-f24cd34a306c38931067ed9752fed0575d591972.zip
[webapp] delete placeholder modules
-rw-r--r--webapp/src/components/MyModule.vue50
-rw-r--r--webapp/src/components/YourModule.vue51
2 files changed, 0 insertions, 101 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>
diff --git a/webapp/src/components/YourModule.vue b/webapp/src/components/YourModule.vue
deleted file mode 100644
index 8215c8d..0000000
--- a/webapp/src/components/YourModule.vue
+++ /dev/null
@@ -1,51 +0,0 @@
-<i18n>
-{
- "en": {
- "hello": "hello world!",
- "test": {
- "abc": "abc"
- }
- },
- "de": {
- "hello": "Hallo Welt!",
- "test": {
- "abc": "abc"
- }
- }
-}
-</i18n>
-
-<template>
- <div class="your-module">
-
- </div>
-</template>
-
-<script>
-
-export default {
- name: 'YourModule',
- 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>
-
-.your-module {
- display: flex;
- flex-direction: column;
- align-items: center;
-}
-
-</style>