mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
docs: 更新教程
This commit is contained in:
parent
b6652624e3
commit
b9248498eb
@ -51,7 +51,7 @@ cd hello-world
|
|||||||
## 添加依赖
|
## 添加依赖
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install --save @tmagic/editor @tmagic/form @tmagic/stage element-plus
|
npm install --save @tmagic/editor @tmagic/form @tmagic/stage @tmagic/design @tmagic/element-plus-adapter element-plus
|
||||||
```
|
```
|
||||||
|
|
||||||
## 注册组件
|
## 注册组件
|
||||||
@ -66,13 +66,16 @@ import '@tmagic/form/dist/style.css';
|
|||||||
import { createApp } from 'vue';
|
import { createApp } from 'vue';
|
||||||
import ElementPlus from 'element-plus';
|
import ElementPlus from 'element-plus';
|
||||||
|
|
||||||
|
import TMagicDesign from '@tmagic/design';
|
||||||
import TMagicEditor from '@tmagic/editor';
|
import TMagicEditor from '@tmagic/editor';
|
||||||
|
import TMagicElementPlusAdapter from '@tmagic/element-plus-adapter';
|
||||||
import TMagicForm from '@tmagic/form';
|
import TMagicForm from '@tmagic/form';
|
||||||
|
|
||||||
import App from './App.vue';
|
import App from './App.vue';
|
||||||
|
|
||||||
createApp(App)
|
createApp(App)
|
||||||
.use(ElementPlus)
|
.use(ElementPlus)
|
||||||
|
.use(TMagicDesign, TMagicElementPlusAdapter)
|
||||||
.use(TMagicEditor)
|
.use(TMagicEditor)
|
||||||
.use(TMagicForm)
|
.use(TMagicForm)
|
||||||
.mount('#app');
|
.mount('#app');
|
||||||
@ -157,6 +160,8 @@ api详情:[modelValue](../../api/editor/props.md#modelvalue-v-model)
|
|||||||
```ts
|
```ts
|
||||||
const value = ref({
|
const value = ref({
|
||||||
type: 'app',
|
type: 'app',
|
||||||
|
// 必须加上ID,这个id可能是数据库生成的key,也可以是生成的uuid
|
||||||
|
id: 1,
|
||||||
items: [],
|
items: [],
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
@ -97,6 +97,8 @@ npm run serve -- --port=8078
|
|||||||
|
|
||||||
const value = ref({
|
const value = ref({
|
||||||
type: 'app',
|
type: 'app',
|
||||||
|
// 必须加上ID,这个id可能是数据库生成的key,也可以是生成的uuid
|
||||||
|
id: 1,
|
||||||
items: [],
|
items: [],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user