Commit 1dcf8f792605b2793b1a781bf849dea40cb68d28
1 parent
0f61c1ad
Exists in
master
chore: 去除console
Showing
1 changed file
with
2 additions
and
4 deletions
Show diff stats
src/App.vue
... | ... | @@ -8,7 +8,7 @@ |
8 | 8 | </div> |
9 | 9 | </template> |
10 | 10 | <script> |
11 | -import vConsole from 'vconsole' | |
11 | +// import vConsole from 'vconsole' | |
12 | 12 | export default { |
13 | 13 | data () { |
14 | 14 | return { |
... | ... | @@ -16,12 +16,10 @@ export default { |
16 | 16 | } |
17 | 17 | }, |
18 | 18 | mounted () { |
19 | - new vConsole() | |
19 | + // new vConsole() | |
20 | 20 | ZWJSBridge.onReady(() => { |
21 | 21 | console.log('初始化完成后,执行bridge方法') |
22 | - | |
23 | 22 | }) |
24 | - | |
25 | 23 | const isElder = sessionStorage.getItem('isElder') |
26 | 24 | if (isElder) { |
27 | 25 | this.isElder = true | ... | ... |