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.
sheyangCoastalSystem/src/App.vue

28 lines
383 B

1 year ago
<template>
<div id="app">
1 year ago
<!-- <img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/> -->
<router-view></router-view>
1 year ago
</div>
</template>
<script>
export default {
name: 'App'
}
1 year ago
</script>
1 year ago
<style lang="scss">
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
}
1 year ago
#app {
1 year ago
width: 100vw;
height: 100vh;
1 year ago
}
</style>