tyler 2 лет назад
Родитель
Сommit
021c05512c
1 измененных файлов с 9 добавлено и 1 удалено
  1. 9 1
      src/App.vue

+ 9 - 1
src/App.vue

@@ -9,7 +9,7 @@ import store from './store'
 
 export default {
   name: 'App',
-  mounted() {
+  created() {
     const self = this
     const language = store.state.app.language
     document.body.addEventListener('plugin_web_update_notice', (e) => {
@@ -67,3 +67,11 @@ export default {
   }
 }
 </script>
+
+<style lang="scss" scoped>
+#app {
+  ::v-deep .el-message-box{
+    width: 320px;
+  }
+}
+</style>