Hi author, i tried use this code to go other route:
<a v-link="{ path: '/hello' }">Hello</a>
<router-link :to="{ name: 'hello' }">Hello</router-link>
my terminal command:
quasar build
cd cordova
cordova run
but when run with cordova, it not happen. (it work fine on quesar dev)

(i try to click hello to go Hello component)
my project:
https://github.com/lyquocnam/quasar-test
this debug detail as tutorial:


Hi,
rxdb is at fault, so you might want to open up a ticket on their website.Either way (a fault in Vue-Router or most likely a package you are importing), Quasar is not at fault.
Wish I could help more, but I am on a tight schedule for v0.14.
Regards,
Razvan
@rstoenescu please see this, may this relate quasar-cli https://github.com/pubkey/rxdb/issues/172
@lyquocnam Posted a message on that thread. Seems like they don't transpile their npm distributable, which is not the expected behavior when the package is used in a Webpack environment. Let's see what they say.
Until rxdb figures it out, you can add an exception for running babel on rxdb too. Change /build/webpack.conf.js:
{
test: /\.js$/,
loader: 'babel-loader',
include: projectRoot,
exclude: /node_modules/ <<<<<<<<
},
/node_modules/ should be /node_modules(?!\/rxdb)/ for you.
i changed in webpack.base.config.js but not work !
{
test: /\.js$/,
loader: 'babel-loader',
include: projectRoot,
exclude: /node_modules(?!\/rxdb)/
},
