0👍
Please try using the Safari Developer Tools on Mac to connect to your test device and check out the JavaScript console. Often times you will see the error there. On Android you can do this with Chrome.
- [Vuejs]-Volar erring on every intrinsic in a Vue template
- [Vuejs]-How do I connect CustomAuthenticationProvider to frontend?
0👍
I am answering my question. i solve this problem by just change the vue route history mode in to hash mode
like shown below
const router = new VueRouter({
mode: "hash",
base: process.env.BASE_URL,
routes,
});
and add the below code in vue.config.js file
devServer:{
https:false
}
- [Vuejs]-Do child routes require the same params as all other routes?
- [Vuejs]-V-model is not defined, passing data from v-data-table to custom component
Source:stackexchange.com