whychdw
2021-04-19 0846e2a77fb1bf078c199b1f2a5994aad1afc4fa
src/App.vue
@@ -1,28 +1,29 @@
<template>
  <div id="app">
    <img alt="Vue logo" src="./assets/logo.png">
    <HelloWorld msg="Welcome to Your Vue.js App"/>
  </div>
    <div id="app">
        <router-view></router-view>
    </div>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
  name: 'App',
  components: {
    HelloWorld
  }
    name: 'App',
}
</script>
<style>
body {
    height: 100vh;
    overflow-y: hidden;
}
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
    height: 100%;
    background-color: #031D67;
    background-image: url("./assets/images/video-bg.jpg");
    overflow-x: hidden;
}
#app:before {
    display: table;
    content: " ";
}
</style>