摘要: 第一步: 在config中引入 // 全局引入vant的提示框 import { Toast } from "vant"; Vue.use(Toast); 第二步: 使用 this.$toast('受不了了,宝贝不能再少了哦') 阅读全文
posted @ 2020-09-04 10:17 lzhflzjx 阅读(1074) 评论(0) 推荐(0)
摘要: this.$router.push()实现路由跳转 push 后面可以是对象,也可以是字符串: // 字符串 this.$router.push('/home/first') // 对象 this.$router.push({ path: '/home/first' }) // 命名的路由 this 阅读全文
posted @ 2020-09-04 09:55 lzhflzjx 阅读(91) 评论(0) 推荐(0)