weex之getPath.js使用

1.在有跳转的页面中 引用
let getPath = require('../utils/getPath.js').getPath

2.methods中跳转放法为
navigator.push({
url: getPath('components/文件名'),
animated: "true"
})
3.每一个有跳转的页面都要有以上方法
4.不要在index.vue中使用 会报错。index中只存在tab组件

你可能感兴趣的:(weex之getPath.js使用)