48 lines
1.1 KiB
Vue
48 lines
1.1 KiB
Vue
<template>
|
|
<a-config-provider :locale="locale">
|
|
<div id="app">
|
|
<router-view/>
|
|
</div>
|
|
<template #renderEmpty>
|
|
<custom-empty></custom-empty>
|
|
</template>
|
|
</a-config-provider>
|
|
</template>
|
|
<script>
|
|
// import zhCN from 'ant-design-vue/lib/locale-provider/zh_CN'
|
|
import en_GB from 'ant-design-vue/lib/locale-provider/en_GB'
|
|
import enquireScreen from '@/utils/device'
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
locale: en_GB,
|
|
}
|
|
},
|
|
created () {
|
|
let that = this
|
|
enquireScreen(deviceType => {
|
|
// tablet
|
|
if (deviceType === 0) {
|
|
that.$store.commit('TOGGLE_DEVICE', 'mobile')
|
|
that.$store.dispatch('setSidebar', false)
|
|
}
|
|
// mobile
|
|
else if (deviceType === 1) {
|
|
that.$store.commit('TOGGLE_DEVICE', 'mobile')
|
|
that.$store.dispatch('setSidebar', false)
|
|
}
|
|
else {
|
|
that.$store.commit('TOGGLE_DEVICE', 'desktop')
|
|
that.$store.dispatch('setSidebar', true)
|
|
}
|
|
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
</style> |