You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
383 B
28 lines
383 B
<template>
|
|
<div id="app">
|
|
<!-- <img alt="Vue logo" src="./assets/logo.png">
|
|
<HelloWorld msg="Welcome to Your Vue.js App"/> -->
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#app {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style>
|