From 2c2bc8614c8ea0ce386369eb4924da1e6aa052d1 Mon Sep 17 00:00:00 2001
From: husq <931347610@qq.com>
Date: Wed, 27 Sep 2023 09:35:57 +0800
Subject: [PATCH] 添加环境配置区分
---
src/App.vue | 32 ++++++++++++--------------------
1 files changed, 12 insertions(+), 20 deletions(-)
diff --git a/src/App.vue b/src/App.vue
index ef1496f..d5ba36b 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,34 +1,26 @@
<template>
- <div id="demo-app" class="demo-app">
- <router-view />
- <!-- <div class="map-wrapper">
- <GMap/>
- </div> -->
- </div>
+ <div class="demo-app">
+ <router-view/>
+ </div>
</template>
-<script lang="ts">
-import { computed, defineComponent, ref } from 'vue'
-import { useMyStore } from './store'
-import GMap from '/@/components/GMap.vue'
-
-export default defineComponent({
- name: 'App',
- components: { GMap },
-
- setup () {
- const store = useMyStore()
- return {}
- }
-})
+<script setup lang="ts">
</script>
<style lang="scss" scoped>
.demo-app {
width: 100%;
height: 100%;
+
.map-wrapper {
height: 100%;
width: 100%;
}
}
</style>
+
+<style lang="scss">
+#demo-app {
+ width: 100%;
+ height: 100%
+}
+</style>
--
Gitblit v1.9.3