vue常见问题

更新于:2021-09-18


基于Vue2

打包白板

config/index.js格式

vue_build_white2

vue.config.js格式

vue_build_white3

路由验证

router/index.js

{
    path: '/details',
    name: 'details',
    meta: {
      requireAuth: true
    }
}

main.js

router.beforeEach((to, from, next) => {
  if (to.meta.requireAuth && !sessionStorage.getItem('author')) {
    next('/login')
    return //不会调用主页接口
  } else {
    //没有开启路由验证
    next() //放行
  }
})

禁止触屏滚动

<div @touchmove.prevent></div>

点击其他地方隐藏某个标签

捕获隐藏

<div @click.capture="toOut($event)"></div>
toOut(event) {
    if (event.target.className == "header1") {
        this.showSignout = false;
    }
}

直接隐藏

<div @click="showSignout = false"></div>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值