App.vue
292 Bytes
<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<script>
export default {
name: "App",
methods: {},
data() {
return {};
}
};
</script>
.el-container{
}
<style>
html,
body,
#app {
min-height: 700px;
height: 100%;
}
</style>