rayyy-vue-table-components 1.2.39 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -11
- package/dist/index.es.js +771 -770
- package/dist/index.umd.js +12 -12
- package/dist/rayyy-vue-table-components.css +1 -1
- package/dist/src/router/constants.d.ts +4 -2
- package/dist/src/views/InstallGuidePage.vue.d.ts +2 -0
- package/package.json +1 -1
- /package/dist/src/views/{demo/TransferItemDemo.vue.d.ts → DocsCenterPage.vue.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -96,18 +96,24 @@ app.mount('#app')
|
|
|
96
96
|
|
|
97
97
|
如果您只想使用部分組件,可以按需引入:
|
|
98
98
|
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
import {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
99
|
+
```vue
|
|
100
|
+
<script setup>
|
|
101
|
+
import {
|
|
102
|
+
SortTable,
|
|
103
|
+
TransferDialog,
|
|
104
|
+
TransferItem,
|
|
105
|
+
BaseBtn,
|
|
106
|
+
SearchableListPanel,
|
|
107
|
+
} from 'rayyy-vue-table-components'
|
|
108
|
+
</script>
|
|
107
109
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
110
|
+
<template>
|
|
111
|
+
<div>
|
|
112
|
+
<BaseBtn>按鈕</BaseBtn>
|
|
113
|
+
<SortTable :data="tableData" />
|
|
114
|
+
<!-- 其他組件... -->
|
|
115
|
+
</div>
|
|
116
|
+
</template>
|
|
111
117
|
```
|
|
112
118
|
|
|
113
119
|
### Hello World
|