HHSLinkSLink/HSLink-front/src/App.vue

18 lines
185 B
Vue
Raw Normal View History

2020-04-01 15:10:56 +08:00
<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
2020-04-14 17:35:18 +08:00
<style scoped>
.el-container{
height: 100%;
}
2020-04-01 15:10:56 +08:00
</style>