fix data declaration
This commit is contained in:
parent
8acc514ba6
commit
9084c516d7
|
@ -45,8 +45,10 @@ Vue.component('copbox',{
|
|||
})
|
||||
|
||||
let vm = new Vue({
|
||||
data: {
|
||||
loading: false
|
||||
data() {
|
||||
return {
|
||||
loading: false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
loadingStart(){
|
||||
|
|
Loading…
Reference in New Issue