Skip to content

Commit

Permalink
Merge pull request #2773 from fourteendp/develop
Browse files Browse the repository at this point in the history
docs: revise component import example
  • Loading branch information
fangsmile authored Nov 6, 2024
2 parents dbadd30 + a72c089 commit 987a97a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/assets/guide/en/Developer_Ecology/vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ yarn add @visactor/vue-vtable
It is recommended to use the npm package import

```js
import { ListColumn } from '@visactor/vue-vtable';
import { ListTable } from '@visactor/vue-vtable';
```

## Draw a Simple List
Expand All @@ -40,7 +40,7 @@ Here is a simple list example code (refer to [demo](../../demo-vue/usage/option)

```html
<template>
<ListColumn :options="tableOptions" />
<ListTable :options="tableOptions" />
</template>

<script>
Expand Down
4 changes: 2 additions & 2 deletions docs/assets/guide/zh/Developer_Ecology/vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ yarn add @visactor/vue-vtable
推荐使用 npm 包引入

```js
import { ListColumn } from '@visactor/vue-vtable';
import { ListTable } from '@visactor/vue-vtable';
```

## 绘制一个简单的列表
Expand All @@ -40,7 +40,7 @@ import { ListColumn } from '@visactor/vue-vtable';

```html
<template>
<ListColumn :options="tableOptions" />
<ListTable :options="tableOptions" />
</template>

<script>
Expand Down

0 comments on commit 987a97a

Please sign in to comment.