1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| <script setup lang="ts">
| import { ref } from 'vue';
|
| import { Page } from '@vben/common-ui';
|
| import { NDataTable } from 'naive-ui';
|
| const columns = ref([
| {
| key: 'no',
| title: 'No',
| },
| {
| key: 'title',
| title: 'Title',
| },
| {
| key: 'length',
| title: 'Length',
| },
| ]);
| const data = [
| { length: '4:18', no: 3, title: 'Wonderwall' },
| { length: '4:48', no: 4, title: "Don't Look Back in Anger" },
| { length: '7:27', no: 12, title: 'Champagne Supernova' },
| ];
| </script>
|
| <template>
| <Page
| description="表单页用于向用户收集或验证信息,基础表单常见于数据项较少的表单场景。"
| title="NDataTable"
| >
| <NDataTable :columns="columns" :data="data" />
| </Page>
| </template>
|
| <style scoped></style>
|
|