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.

38 lines
503 B

4 years ago
<template>
<div id="app">
4 years ago
<router-view />
<Home />
4 years ago
</div>
</template>
<script>
4 years ago
// import Home from "./views/home.vue";
4 years ago
export default {
4 years ago
name: "App",
created() {},
methods: {
// go(path) {
// this.$router.push({ path: path });
// setTimeout(() => {
// location.reload();
// }, 100);
// },
},
};
4 years ago
</script>
4 years ago
<style lang="less">
* {
margin: 0;
padding: 0;
list-style: none;
margin: auto;
}
4 years ago
#app {
4 years ago
width: 1280px;
height: 720px;
4 years ago
}
</style>