cmpt-huitu-cli 1.0.1 → 1.0.2
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 +14 -4
- package/package.json +1 -1
- package/templates/.DS_Store +0 -0
- package/templates/default/.lingma/rules/project-rules.md +711 -0
- package/templates/default/.qoder/rules/project-rules.md +715 -0
- package/templates/default/.trae/rules/project-rules.md +711 -0
- package/templates/default/README.md +1 -1
- package/templates/default/src/components.d.ts +3 -3
- package/templates/default/src/main.js +1 -1
- package/templates/default/src/routers/base.js +4 -4
- package/templates/default/src/views/{Home.vue → home.vue} +1 -16
- package/templates/default/vite.config.js +15 -1
- /package/templates/default/src/{App.vue → app.vue} +0 -0
- /package/templates/default/src/components/error/{Error.vue → error.vue} +0 -0
- /package/templates/default/src/views/{About.vue → about.vue} +0 -0
package/README.md
CHANGED
|
@@ -101,12 +101,23 @@ my-project/
|
|
|
101
101
|
|
|
102
102
|
```vue
|
|
103
103
|
<script setup>
|
|
104
|
-
import { HTable,
|
|
104
|
+
import { HTable, VexTable, HtDialog } from 'cmpt-huitu-ui'
|
|
105
105
|
</script>
|
|
106
106
|
|
|
107
107
|
<template>
|
|
108
|
-
<
|
|
109
|
-
|
|
108
|
+
<HTable
|
|
109
|
+
:data="tableData"
|
|
110
|
+
:columns="columns"
|
|
111
|
+
/>
|
|
112
|
+
<VexTable
|
|
113
|
+
:data="tableData"
|
|
114
|
+
:columns="columns"
|
|
115
|
+
/>
|
|
116
|
+
<HtDialog
|
|
117
|
+
v-model="visible"
|
|
118
|
+
title="对话框"
|
|
119
|
+
>内容</HtDialog
|
|
120
|
+
>
|
|
110
121
|
</template>
|
|
111
122
|
```
|
|
112
123
|
|
|
@@ -166,4 +177,3 @@ proxy: {
|
|
|
166
177
|
## 📄 许可证
|
|
167
178
|
|
|
168
179
|
ISC
|
|
169
|
-
|
package/package.json
CHANGED
|
Binary file
|