fix data declaration

This commit is contained in:
edbrz9 2022-12-30 16:49:52 +01:00
parent 8acc514ba6
commit 9084c516d7
1 changed files with 4 additions and 2 deletions

View File

@ -45,8 +45,10 @@ Vue.component('copbox',{
})
let vm = new Vue({
data: {
loading: false
data() {
return {
loading: false
}
},
methods: {
loadingStart(){