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