vue-component
Installation
SKILL.md
构建Vue3 SFC组件
你需要按照如下要求构建一个 Vue3 SFC 组件
1) 组件文件结构
组件文件结构应该如下:
./MyComponent/
├── components/
│ └── // 子组件目录,可选
├── hooks/
│ └── useMyComponent.ts
├── constants.ts
├── utils.ts
├── types.ts
└── index.vue
components中应该递归地去编写子组件,每个子组件的文件结构与 MyComponent 相同。