38 lines
402 B
Vue
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>
|