| 1234567891011121314151617181920212223242526 | <template>  <div id="app">    <router-view />  </div></template><script>export default {  name: "app",  data() {    return {};  },  watch: {},  created() {  },  methods: {},  computed: {}};</script><style lang="scss">#app {  width: 100%;  height: 100%;  overflow: hidden;}</style>
 |