@kokimin/vue-framework 0.0.21 → 0.0.23
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 +15 -42
- package/dist/index.es.js +144 -804
- package/dist/index.umd.js +8 -8
- package/dist/style.css +1 -1
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -7,12 +7,19 @@ Vue 3 기반의 재사용 가능한 UI 컴포넌트 라이브러리입니다.
|
|
|
7
7
|
|
|
8
8
|
## 특징
|
|
9
9
|
|
|
10
|
-
- 🎨 **
|
|
11
|
-
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
-
|
|
10
|
+
- 🎨 **UI 컴포넌트** - 버튼, 폼, 네비게이션, 레이아웃 등
|
|
11
|
+
- 🎭 **Storybook** - 사용 예시
|
|
12
|
+
|
|
13
|
+
## 링크
|
|
14
|
+
|
|
15
|
+
- 📧 Email: kokimin78@gmail.com
|
|
16
|
+
- 📖 **[Storybook 문서](https://kokimin.github.io/npm-framework-storybook/)** - 모든 컴포넌트의 상세 문서 및 예제
|
|
17
|
+
- 🐛 **[GitHub Issues](https://github.com/kokimin/npm-framework-storybook/issues)** - 버그 제보 및 문의
|
|
18
|
+
- 🚀 **[샘플 프로젝트](https://kokimin.github.io/npm-framework-project/)** - 실제 사용 예제를 확인할 수 있는 데모 프로젝트
|
|
19
|
+
|
|
20
|
+
**오류나 문의 사항이 있으시면 [GitHub Issues](https://github.com/kokimin/npm-framework-storybook/issues)에 이슈를 남겨주세요.**
|
|
21
|
+
|
|
22
|
+
|
|
16
23
|
|
|
17
24
|
## 설치
|
|
18
25
|
```bash
|
|
@@ -205,6 +212,8 @@ const tabs = [
|
|
|
205
212
|
</template>
|
|
206
213
|
```
|
|
207
214
|
|
|
215
|
+
더 많은 예제는 [샘플 프로젝트](https://kokimin.github.io/npm-framework-project/)에서 확인하실 수 있습니다.
|
|
216
|
+
|
|
208
217
|
## Props 및 이벤트
|
|
209
218
|
|
|
210
219
|
각 컴포넌트의 상세한 Props, Events, Slots 정보는 [Storybook 문서](https://kokimin.github.io/npm-framework-storybook/)에서 확인할 수 있습니다.
|
|
@@ -243,35 +252,7 @@ const tabs = [
|
|
|
243
252
|
- Vue 3.4.0+
|
|
244
253
|
- Vee-Validate 4.15.1+
|
|
245
254
|
- Vue Router 4.6.4+
|
|
246
|
-
- Vue i18n 11.2.2+
|
|
247
|
-
|
|
248
|
-
## 개발
|
|
249
|
-
```bash
|
|
250
|
-
# 설치
|
|
251
|
-
npm install
|
|
252
|
-
|
|
253
|
-
# 개발 서버 실행
|
|
254
|
-
npm run dev
|
|
255
255
|
|
|
256
|
-
# Storybook 실행
|
|
257
|
-
npm run storybook
|
|
258
|
-
|
|
259
|
-
# 빌드
|
|
260
|
-
npm run build
|
|
261
|
-
|
|
262
|
-
# Storybook 빌드
|
|
263
|
-
npm run build-storybook
|
|
264
|
-
```
|
|
265
|
-
|
|
266
|
-
## 기여
|
|
267
|
-
|
|
268
|
-
기여를 환영합니다! 이슈나 PR을 자유롭게 제출해주세요.
|
|
269
|
-
|
|
270
|
-
1. Fork the repository
|
|
271
|
-
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
|
|
272
|
-
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
|
|
273
|
-
4. Push to the branch (`git push origin feature/amazing-feature`)
|
|
274
|
-
5. Open a Pull Request
|
|
275
256
|
|
|
276
257
|
## 라이선스
|
|
277
258
|
|
|
@@ -281,14 +262,6 @@ MIT License
|
|
|
281
262
|
|
|
282
263
|
변경 사항은 [CHANGELOG.md](./CHANGELOG.md)에서 확인할 수 있습니다.
|
|
283
264
|
|
|
284
|
-
## 지원
|
|
285
|
-
|
|
286
|
-
- 📧 Email: support@kokimin.com
|
|
287
|
-
- 🐛 Issues: [GitHub Issues](https://github.com/kokimin/npm-framework-storybook/issues)
|
|
288
|
-
- 📖 Documentation: [Storybook](https://kokimin.github.io/npm-framework-storybook/)
|
|
289
|
-
|
|
290
|
-
**오류나 문의 사항이 있으시면 [GitHub Issues](https://github.com/kokimin/npm-framework-storybook/issues)에 이슈를 남겨주세요.**
|
|
291
|
-
|
|
292
265
|
## 크레딧
|
|
293
266
|
|
|
294
267
|
이 프로젝트는 다음 오픈소스 라이브러리를 사용합니다:
|