fix: issue of contextmenu in TabsView component; 🐛

修复:TabsView 组件右键菜单的bug;
This commit is contained in:
iczer
2020-07-10 19:09:41 +08:00
parent 1f26734a13
commit 107e08c08e
3 changed files with 17 additions and 13 deletions

View File

@@ -124,7 +124,7 @@ for (let i = 0; i < 8; i++) {
}
export default {
name: 'analysis',
name: 'Analysis',
i18n: require('./i18n'),
data () {
return {
@@ -133,7 +133,7 @@ export default {
}
},
created() {
setTimeout(() => this.loading = !this.loading, 500)
setTimeout(() => this.loading = !this.loading, 1000)
},
components: {Trend, SalesData, HotSearch, RankingList, Bar, MiniProgress, MiniBar, MiniArea, ChartCard}
}