Go to file
吴延福 0361dc06ed feat:新增周界 2023-05-18 09:13:35 +08:00
public 初始化页面搭建 2023-05-16 13:37:15 +08:00
src feat:新增周界 2023-05-18 09:13:35 +08:00
.env.development fixed:修改配置文件 2023-05-16 16:33:33 +08:00
.env.production fixed:修改配置文件 2023-05-16 16:33:33 +08:00
.env.test fixed:修改配置文件 2023-05-16 16:33:33 +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 style:增加逗号 2023-05-16 16:19:04 +08:00
tsconfig.json 初始化页面搭建 2023-05-16 13:37:15 +08:00
vue.config.js 初始化页面搭建 2023-05-16 13:37:15 +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>