@devflow-tools/plugin-vue 0.17.4 → 0.17.6
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 +62 -7
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
# @devflow-tools/plugin-vue
|
|
2
2
|
|
|
3
|
-
Vue 3 专家插件 — Bug 诊断、Composition API
|
|
3
|
+
> Vue 3 专家插件 — Bug 诊断、Composition API、响应式调试、组件重构。(v0.17.6)
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## 安装
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npm install @devflow-tools/plugin-vue
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
## 使用
|
|
12
|
+
|
|
13
|
+
插件通过 DevFlow/Claude Code 使用:
|
|
14
|
+
|
|
15
|
+
```text
|
|
16
|
+
/devflow:vue <你的任务>
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## 能力与知识源
|
|
20
|
+
|
|
11
21
|
## MCP Tools
|
|
12
22
|
|
|
13
23
|
| Tool | 说明 | 关键参数 |
|
|
@@ -32,12 +42,57 @@ npm install @devflow-tools/plugin-vue
|
|
|
32
42
|
- 组合函数(composables)以 `use` 开头,返回 ref/reactive
|
|
33
43
|
- `watch`/`watchEffect` 自动清理避免内存泄漏
|
|
34
44
|
|
|
35
|
-
## Usage
|
|
36
45
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
/
|
|
40
|
-
|
|
46
|
+
## 兼容性
|
|
47
|
+
|
|
48
|
+
需要 Node.js >= 18,并与同版本 @devflow-tools/sdk、DevFlow CLI 配合使用。插件不是独立 HTTP 服务。
|
|
49
|
+
|
|
50
|
+
## 相关链接
|
|
51
|
+
|
|
52
|
+
- [仓库](https://github.com/shilongfeicool/dev-flow)
|
|
53
|
+
- [插件目录](https://github.com/shilongfeicool/dev-flow/tree/main/plugins)
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
MIT
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
## 兼容性
|
|
61
|
+
|
|
62
|
+
需要 Node.js >= 18,并与同版本 @devflow-tools/sdk、DevFlow CLI 配合使用。插件不是独立 HTTP 服务。
|
|
63
|
+
|
|
64
|
+
## 相关链接
|
|
65
|
+
|
|
66
|
+
- [仓库](https://github.com/shilongfeicool/dev-flow)
|
|
67
|
+
- [插件目录](https://github.com/shilongfeicool/dev-flow/tree/main/plugins)
|
|
68
|
+
|
|
69
|
+
## License
|
|
70
|
+
|
|
71
|
+
MIT
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
## 兼容性
|
|
75
|
+
|
|
76
|
+
需要 Node.js >= 18,并与同版本 @devflow-tools/sdk、DevFlow CLI 配合使用。插件不是独立 HTTP 服务。
|
|
77
|
+
|
|
78
|
+
## 相关链接
|
|
79
|
+
|
|
80
|
+
- [仓库](https://github.com/shilongfeicool/dev-flow)
|
|
81
|
+
- [插件目录](https://github.com/shilongfeicool/dev-flow/tree/main/plugins)
|
|
82
|
+
|
|
83
|
+
## License
|
|
84
|
+
|
|
85
|
+
MIT
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
## 兼容性
|
|
89
|
+
|
|
90
|
+
需要 Node.js >= 18,并与同版本 @devflow-tools/sdk、DevFlow CLI 配合使用。插件不是独立 HTTP 服务。
|
|
91
|
+
|
|
92
|
+
## 相关链接
|
|
93
|
+
|
|
94
|
+
- [仓库](https://github.com/shilongfeicool/dev-flow)
|
|
95
|
+
- [插件目录](https://github.com/shilongfeicool/dev-flow/tree/main/plugins)
|
|
41
96
|
|
|
42
97
|
## License
|
|
43
98
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devflow-tools/plugin-vue",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"clean": "rm -rf dist"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@devflow-tools/sdk": "0.17.
|
|
20
|
+
"@devflow-tools/sdk": "0.17.6"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"typescript": "^5.5.0",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"files": [
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "669fea3aa72aa3fde14ed50d24c1fec4dfac088f"
|
|
30
30
|
}
|