mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
This is a difficult first step to more unified less code. replace inline styles with class names and define rules at the end of vue files remove first ant-pro classes (no benefits with it yet) move some less rules to components Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
30 lines
432 B
Vue
30 lines
432 B
Vue
<template>
|
|
<a-locale-provider :locale="locale">
|
|
<div id="app">
|
|
<router-view/>
|
|
</div>
|
|
</a-locale-provider>
|
|
</template>
|
|
|
|
<script>
|
|
import enUS from 'ant-design-vue/lib/locale-provider/en_US'
|
|
import { AppDeviceEnquire } from '@/utils/mixin'
|
|
|
|
export default {
|
|
mixins: [AppDeviceEnquire],
|
|
data () {
|
|
return {
|
|
locale: enUS
|
|
}
|
|
},
|
|
mounted () {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
</style>
|