fix: 修复display引入的问题

This commit is contained in:
Captain.B 2020-12-01 13:23:23 +08:00
parent 3a16942876
commit 44e21cea8f
1 changed files with 1 additions and 7 deletions

View File

@ -12,7 +12,7 @@
<ldap-setting/> <ldap-setting/>
</el-tab-pane> </el-tab-pane>
<el-tab-pane v-if="hasLicense()" :label="$t('display.title')" name="display"> <el-tab-pane v-if="hasLicense()" :label="$t('display.title')" name="display">
<component :is="displayComponent"></component> <ms-display/>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</el-card> </el-card>
@ -38,12 +38,6 @@ export default {
data() { data() {
return { return {
activeName: 'base', activeName: 'base',
displayComponent: null,
}
},
mounted() {
if (display.default !== undefined) {
this.displayComponent = "MsDisplay";
} }
}, },
methods: { methods: {