This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-05-05_vuex-11-a-challe.../src/App.vue

29 lines
322 B
Vue

<template>
<the-header></the-header>
<router-view></router-view>
</template>
<script>
import TheHeader from './components/nav/TheHeader.vue';
export default {
components: {
TheHeader
}
};
</script>
<style>
* {
box-sizing: border-box;
}
html {
font-family: sans-serif;
}
body {
margin: 0;
}
</style>