Go to file
guangyin cf85eed104 feat:更新标题信息 2024-07-10 10:27:01 +08:00
public feat:更新飞渡依赖信息 2024-03-21 14:49:55 +08:00
src feat:更新标题信息 2024-07-10 10:27:01 +08:00
.env.development Merge branch 'guangyin' 2023-06-08 11:06:48 +08:00
.env.developmentGY feat:修改依赖信息 2023-06-08 11:00:45 +08:00
.env.developmentLocal 配置文件修改 2023-06-07 17:44:57 +08:00
.env.prod 修改配置文件 2023-06-08 11:20:27 +08:00
.env.prodLocal feat:更新标题信息 2024-07-10 10:27:01 +08:00
.env.production feat:更新标题信息 2024-07-10 10:27:01 +08:00
.env.test 配置文件修改 2023-06-07 17:44:57 +08:00
.eslintignore feat:配置文件 2023-05-16 13:47:18 +08:00
.gitignore feat:配置文件 2023-05-16 13:47:18 +08:00
README.md 初始化页面搭建 2023-05-16 13:37:15 +08:00
babel.config.js 初始化页面搭建 2023-05-16 13:37:15 +08:00
package.json feat:更改配置文件 2023-06-08 11:31:53 +08:00
tsconfig.json 初始化页面搭建 2023-05-16 13:37:15 +08:00
vue.config.js 修改配置文件 2023-06-08 11:20:27 +08:00

README.md

hbt-template-ui

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

本框架采用ts与法 具体依赖vue-property-decorator

see vue-property-decorator用法详解 https://blog.csdn.net/weixin_44116302/article/details/111225763#PropSync_141

采用模块联邦

远程引用需要先在global.d.ts中注册
例:如需使用远程地图
1.在global.d.ts中注册  declare module 'common/map';
2.在页面中引用
@Component({
  components:{MapComponent:()=>import("common/map") }
})
3.在html中应用 <MapComponent :id="'testID'" @onMapLoaded="getMap($event)"></MapComponent>