feat(map): added AMap/Baidu/Google Map example close #81

This commit is contained in:
Vben
2021-03-12 21:45:27 +08:00
parent a89eeef6f3
commit a9462f0d4d
27 changed files with 2223 additions and 96 deletions

View File

@@ -1,6 +1,14 @@
import '/@/design/index.less';
import '@virtual/windi.css';
// Do not introduce on-demand in local development?
// In the local development for on-demand introduction, the number of browser requests will increase by about 20%.
// Which may slow down the browser refresh.
// Therefore, all are introduced in local development, and only introduced on demand in the production environment
if (import.meta.env.DEV) {
import('ant-design-vue/dist/antd.less');
}
import { createApp } from 'vue';
import App from './App.vue';