mat.services/layouts/default.vue

20 lines
253 B
Vue
Raw Normal View History

2018-02-09 18:01:38 +00:00
<template lang="pug">
.nuxt
2018-10-14 06:45:44 +00:00
hero
2018-02-09 18:01:38 +00:00
.container
nuxt
footer.footer.white
</template>
<script>
2018-10-14 06:45:44 +00:00
import hero from '../components/hero.vue'
2018-02-09 18:01:38 +00:00
export default {
2018-10-14 06:45:44 +00:00
components: { hero }
}
2018-02-09 18:01:38 +00:00
</script>
<style lang="sass">
@import '~assets/sass/mat'
</style>