Fixed styling of vue components
This commit is contained in:
parent
b7d8503cd9
commit
ca6e179a2e
|
|
@ -28,9 +28,11 @@
|
|||
<script>
|
||||
export default {
|
||||
name: 'App',
|
||||
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
|
||||
mounted() {
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@
|
|||
},
|
||||
|
||||
created() {
|
||||
// debugger
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -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: {}
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in New Issue