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