开放平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415
  1. export default ({
  2. app
  3. }) => {
  4. app.router.beforeEach((to, from, next) => {
  5. console.log(to.path)
  6. if (to.path === '/domain' || to.path === '/domain/control' || to.path === '/domain/' || to.path === '/domain/control/') {
  7. next('/domain/control/myApp')
  8. return
  9. }
  10. next()
  11. })
  12. }