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> <script>
export default { export default {
name: 'App', name: 'App',
data() { data() {
return {} return {}
}, },
mounted() { mounted() {
} }
} }

View File

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

View File

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

View File

@ -16,4 +16,4 @@ export default new Vuex.Store({
actions: {}, actions: {},
mutations: {} mutations: {}
}) })