[Vuejs]-How to access data before mounting in vuejs?

0👍

Ok, so I figured it out.

If anyone else runs into this, here is how I solved it

new Vue({
 vuetify,
 store,
 render: h => h(App),
 data: {
   user: ''
 },
 beforeMount() { this.user = this.$el.dataset.user } <--- ADD THIS TO SET THE VALUE
}).$mount('#app')

Leave a comment