feat: 引入eslint

This commit is contained in:
chenjinsong
2021-03-19 18:52:19 +08:00
parent ca31480b84
commit 337ee9a938
159 changed files with 47146 additions and 47387 deletions

View File

@@ -14,24 +14,22 @@
<script>
export default {
name: "loading",
name: 'loading',
props: {
},
data() {
data () {
return {
showLoading:false,
};
showLoading: false
}
},
methods: {
startLoading(){
this.showLoading = true;
},
endLoading(){
this.showLoading = false;
startLoading () {
this.showLoading = true
},
endLoading () {
this.showLoading = false
}
}
};
}
</script>