我目前正在开发一个android库。所以,我有一个module.exports {
...
router: {
beforeResolve(to, from, next) {
if (this.$store.getters.isLoggedIn)
next('/resource')
}
}
...
}
。
我想知道是否有可能将aar包含在react native项目中。
提前谢谢!