docs: 组件开发和页面发布模块的文档修改 (#488)

* docs(docs): 组件开发和页面发布模块的文档修改

* docs(): 根据review建议,撤回有误解的修改[/]

* docs(): 回撤publish.md文件中的描述
This commit is contained in:
Capchen 2023-03-06 10:38:45 +08:00 committed by GitHub
parent 219aa2b550
commit e3af0b2914
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -122,7 +122,7 @@ export default Test;
在 runtime vue3 中,我们已经提供好一份示例。在 tmagic.config.ts 文件中。只需要在 packages 加入你创建的组件的路径(如果是个 npm 包,则将路径替换为包名即可),打包工具就会自动识别到你的组件。
### 3. 启动 playground
在上面的步骤完成后,在 playground/src/page/Editor.vue 中。找到组件栏的基础组件列表,在其中加入你的开发组件
在上面的步骤完成后,在 playground/src/configs/componentGroupList 中。找到组件栏的基础组件列表,在其中加入你的开发组件
```javascript
{
title: '基础组件',

View File

@ -107,6 +107,7 @@ tmagic-editor的页面发布目前使用的是静态资源发布。而所有
原始的 page.html 页面框架
```html
<!DOCTYPE html>
<html lang="en">
<head>
@ -129,7 +130,7 @@ tmagic-editor的页面发布目前使用的是静态资源发布。而所有
</html>
```
插入项目信息后的 page.html
插入项目信息后的 page.html
```html
<!DOCTYPE html>
<html lang="en">
@ -156,3 +157,10 @@ tmagic-editor的页面发布目前使用的是静态资源发布。而所有
```
其中DSL.js文件为
```
window.magicDSL = [
// DSL
]
```