简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
VMware虚拟机中的CentOS7安装Nginx后本机无法访问的解决办法
watch监听路由变化当路由改变时,运行newpage函数。export default {watch: {'$route': 'newpage'},methods: {newpage() {//do something;},},};...
template<input type="text" placeholder="输入货物名称" v-model="queryStr" >debounce 函数const debounc
$route.path类型: string字符串,对应当前路由的路径,总是解析为绝对路径,如 /foo/bar。$route.params类型: Object一个 key/value 对象,包含了动态片段和全匹配片段,如果没有路由参数,就是一个空对象。$route.query类型: Object一个key/value 对象,表示 URL 查询参数。例如,对于路径/f...
component:resolve => require(['@/pages/About'],resolve)
在路由跳转的时候,我们需要一些权限判断。这个时候就需要使用路由的钩子函数。beforeEach函数router.beforeEach((to, from, next) => {// do something;/* must call `next` */next();});to:router即将进入的路由对象from:当前即将离开的路由n...
新建mixins文件// src/mixins/index.jslet mixin={data(){return{};},methods:{loadPage(routerName,param){if(param){this.$router.push({name:routerName,query:param});...
新建filter文件src目录下新建filters目录,filters目录里新建index.js文件//exports.formatMoney = (value) => {if (value) {value = Number(value);return '¥ ' + value.toFixed(2);}};exports.statusName ...
对象属性的watchdata() { return { tradeData: { creator: 'anki', GoodsVoList: [] }}},watch: { tradeData: { handler(newValue, oldValue) { console.log(newValue) ...
此段代码在ios11上 强制退出app不可用了。const threadClass = plus.ios.importClass("NSThread");const mainThread = plus.ios.invoke(threadClass, "mainThread");plus.ios.invoke(mainThread, "exit");可以用下面这段plus.ios.import("U