mirror of
https://github.com/iczer/vue-antd-admin.git
synced 2025-05-19 12:35:09 +08:00
29 lines
495 B
Vue
29 lines
495 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import enquireScreen from './utils/device'
|
|
|
|
export default {
|
|
name: 'App',
|
|
created () {
|
|
let _this = this
|
|
enquireScreen(isMobile => {
|
|
_this.$store.commit('setting/setDevice', isMobile)
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
#app {
|
|
/*font-family: 'Avenir', Helvetica, Arial, sans-serif;*/
|
|
/*-webkit-font-smoothing: antialiased;*/
|
|
/*-moz-osx-font-smoothing: grayscale;*/
|
|
/*color: #2c3e50;*/
|
|
}
|
|
</style>
|