1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| import {
| Loading
| } from 'element-ui'
|
| export default {
| data () {
| return {
| loading: false,
| tab_loading: null // 放在 tabs-content 里客户的
| }
| },
|
| watch: {
| loading: function (val) {
| if (val) {
| this.tab_loading = Loading.service({
| target: document.querySelector('.t-loading-content')
| })
| } else {
| this.tab_loading.close()
| }
| }
| },
|
| mounted () {},
|
| deactivated: function () {}
|
| }
|
|