如图,项目中用了vue-router放在图中路径下
/router/index.js中引入Vue及vue-router
import Vue from 'vue' import Router from 'vue-router'
在main.js中有定义一个Vue.prototype.debug = true
现在想知道如何在/router/index.js中访问到Vue.prototype.debug这个对象?
你的问题我也不知道怎么处理。我的曲线救国的方法是:定义一个config.js,在里面声明export const APP_DEBUG_MODE = true,然后在你的需要判断Vue.debug的地方引入这个config来判断APP_DEBUG_MODE的值
export const APP_DEBUG_MODE = true
你的问题我也不知道怎么处理。
我的曲线救国的方法是:定义一个config.js,在里面声明
export const APP_DEBUG_MODE = true
,然后在你的需要判断Vue.debug的地方引入这个config来判断APP_DEBUG_MODE的值