1:工具文件夹common中until.js创建方法
const xxxx = str => ['男','女','小孩'][str] || '未知';
//导出
export default {
xxxx
}
2:页面中方法引用
import utils from '@/common/utils.js';
//()中是需要传进入的参数
const sss = utils.xxxx(0)
console.log(sss)
1:工具文件夹common中until.js创建方法
const xxxx = str => ['男','女','小孩'][str] || '未知';
//导出
export default {
xxxx
}
2:页面中方法引用
import utils from '@/common/utils.js';
//()中是需要传进入的参数
const sss = utils.xxxx(0)
console.log(sss)