Fixed styling of vue components

This commit is contained in:
Pawel Kowalski 2018-08-09 15:16:49 +02:00
parent b7d8503cd9
commit ca6e179a2e
4 changed files with 14 additions and 10 deletions

View File

@ -28,9 +28,11 @@
<script>
export default {
name: 'App',
data() {
return {}
},
mounted() {
}
}

View File

@ -9,6 +9,9 @@
</div>
</template>
<script>
</script>
<style scoped lang="scss">
.module-teaser {
box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.12);

View File

@ -37,7 +37,6 @@
},
created() {
// debugger
}
}
</script>

View File

@ -4,16 +4,16 @@ import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
modules: {},
modules: {},
state: {
userid: null,
username: null
},
state: {
userid: null,
username: null
},
getters: {},
getters: {},
actions: {},
actions: {},
mutations: {}
})
mutations: {}
})