摘要:
1.1 安装 npm i sass 1.2 使用 单独文件的后缀 .scss 写在 .vue文件中 <style lang="scss"></style> 1.3 语法 1.3.1 定义变量:用来定义主题色、字体颜色、字体大小、部分公共样式,以$开头 例:定义:$blue:#1875e7; 使用:c 阅读全文
摘要:
vue路由跳转及传参、获取参数 1. query方式 跳转传参:this.$router.push({ name:'customerView',// 要跳转页面的名字(router文件里的name) query:{ customerNo:this.customerNo, //参数1 customer 阅读全文