This commit is contained in:
itellyou 2022-01-28 14:06:16 +08:00
parent 1489340fcd
commit caf7ddf037
4 changed files with 2 additions and 11 deletions

View File

@ -6,7 +6,7 @@
2、熟悉 React 技术栈,了解渲染流程和机制。
3、理解 MVC设计模式、事件驱动机制、不可变数据结构。
3、理解 MVC 设计模式、事件驱动机制、不可变数据结构。
4、有使用 Websocket、Canvas 经验。
@ -413,8 +413,6 @@ yarn start
- `api` 支持一些插件所需要的 api 访问,默认使用 https://editor.aomao.com 作为 api 服务
- `ot-server` 协同服务端。启动yarn dev
启动后访问 localhost:7001
### Vue
只需要进入 examples/vue 目录安装依赖

View File

@ -21,12 +21,7 @@ $ npm install
### 启动项目
```bash
//普通启动
$ yarn start
//or
//服务端渲染模式启动,将调用 site-ssr 。要完全使用ssr模式启动后需要主动访问 7001 端口
$ yarn ssr
```
### 启动协同服务

View File

@ -293,8 +293,6 @@ yarn ssr
- `site-ssr` 所有的后端 API 和 SSR 配置。使用的 egg 。在 am-editor 根目录下使用 yarn ssr 自动启动 `site-ssr`
- `ot-server` 协同服务端。启动yarn start
启动后访问 localhost:7001
### Vue3
只需要进入 examples/vue 目录安装依赖

View File

@ -59,7 +59,7 @@ class EmbedComponent<V extends EmbedValue = EmbedValue> extends Card<V> {
onActivate(activated: boolean) {
super.onActivate(activated);
if (activated) this.#mask?.hide();
else this.#mask?.show();
else if (isEngine(this.editor)) this.#mask?.show();
}
collapse() {