Ai
45 Star 484 Fork 88

gyy/vue-amap
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 771 Bytes
一键复制 编辑 原始数据 按行查看 历史
gyy 提交于 2021-12-25 14:11 +08:00 . 初次提交
<script lang="ts">
// This starter template is using Vue 3 <script setup> SFCs
// Check out https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup
import Menu from './components/Menu.vue'
import {defineComponent} from "vue";
export default defineComponent({
name: 'app',
components: {Menu}
})
</script>
<template>
<div id="app">
<div class="left-container">
<Menu />
</div>
<div class="container">
<router-view />
</div>
</div>
</template>
<style lang="scss">
html,body{
width: 100%;
height: 100%;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
#app {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
.left-container{
width: 200px;
}
.container{
flex: 1;
}
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/guyangyang/vue-amap.git
git@gitee.com:guyangyang/vue-amap.git
guyangyang
vue-amap
vue-amap
dev

搜索帮助