Commit d8a556a9778560673b1fb33d39188e518066c854

Authored by 杨鸣坤
1 parent a4ea86ed

feat: 更新平台标题并禁用devtools

Showing 2 changed files with 2 additions and 1 deletions
... ... @@ -4,7 +4,7 @@
4 4 <meta charset="UTF-8">
5 5 <link rel="icon" href="/favicon.ico">
6 6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7   - <title>Vite App</title>
  7 + <title>云物联网平台</title>
8 8 </head>
9 9 <body>
10 10 <div id="app"></div>
... ...
... ... @@ -8,6 +8,7 @@ import App from './App.vue'
8 8 import './assets/main.css'
9 9
10 10 const app = createApp(App)
  11 +app.config.devtools = false
11 12
12 13 for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
13 14 app.component(key, component)
... ...