0π
{
src: '~/plugins/vuex-persist',
mode: 'client',
ssr: false
},
or
{
src: '~/plugins/vuex-persist',
mode: 'server',
ssr: false
},
π€Mr A B.a
- [Vuejs]-Unable to bind v-model with vue-date-picker
- [Vuejs]-How to render WordPress rest api datawith vue.js
-1π
The problem is fixed by providing css file in head section of nuxt.config.js :
link: [{
rel: 'icon',
type: 'image/x-icon',
href: '/favicon.ico'
},
{
rel: 'preload',
as: 'style',
onload: "this.onload=null;this.rel='stylesheet'",
href: '/vue-select.css',
}
]
however it will be considered as a render blocking resource by google page inspection and this is SEO issue. so i will add these 3 properties:
rel: 'preload',
as: 'style',
onload: "this.onload=null;this.rel='stylesheet'",
π€Ali saberi
- [Vuejs]-Unable to set a data property in Vue.js
- [Vuejs]-Vue CLI project setup throws ENOENT: no such file or directory error
Source:stackexchange.com