vd/frontend/src/App.vue
2019-04-18 12:06:27 +08:00

38 lines
402 B
Vue

<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: "App"
};
</script>
<style>
.ivu-auto-complete.ivu-select-dropdown {
max-height: 200px;
}
.ivu-auto-complete.ivu-select-dropdown {
max-width: 250px;
}
</style>
<style lang="less">
.size {
width: 100%;
height: 100%;
}
html,
body {
.size;
overflow: hidden;
}
#app {
.size;
}
</style>