Home.vue 585 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="home">
  3. 这是首页
  4. <button @click="$router.back()">返回</button>
  5. <br>
  6. <br>
  7. <el-button type="success" @click.stop="goMain">表单</el-button>
  8. <el-button type="danger" @click="goSell">登录</el-button>
  9. <keep-alive :include="['vase1','vase2']">
  10. <router-view></router-view>
  11. </keep-alive>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. name: "Home",
  17. methods:{
  18. goMain() {
  19. this.$router.push("/home/vase1")
  20. },
  21. goSell() {
  22. this.$router.push("/home/vase2")
  23. }
  24. }
  25. };
  26. </script>
  27. <style></style>