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')
- [Vuejs]-How to post select input option value with axios.post?
- [Vuejs]-Vuex: using moduled Mutations and vuex's createNamespacedHelpers API
Source:stackexchange.com