From f347549349e00552d8fa723214a3e1881e06e958 Mon Sep 17 00:00:00 2001 From: zq <136432190602163.com> Date: Fri, 11 Jul 2025 18:20:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=BC=B9=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .npmignore | 26 ++++++-- examples/src/App.vue | 30 ++++----- packages/.eslintrc.js | 37 ++++++----- packages/GuipDialog/index.js | 7 ++ packages/GuipDialog/src/index.vue | 131 ++++++++++++++++++++++++++++++++++++++ packages/GuipRadio/src/index.vue | 14 +++- packages/GuipSelect/src/index.vue | 19 +++++- packages/index.js | 9 ++- 8 files changed, 232 insertions(+), 41 deletions(-) create mode 100644 packages/GuipDialog/index.js create mode 100644 packages/GuipDialog/src/index.vue diff --git a/.npmignore b/.npmignore index 66afbce..8fc388f 100644 --- a/.npmignore +++ b/.npmignore @@ -1,8 +1,24 @@ # 忽略文件 examples/ +build/ node_modules/ -*.log -*.md -*.yml -webpack.config.js -.gitignore \ No newline at end of file +*.map +*.html + +# 本地开发文件 +.DS_Store +*.local + +# 日志文件 +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# 编辑器目录和文件 +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? \ No newline at end of file diff --git a/examples/src/App.vue b/examples/src/App.vue index 8bab525..1515f30 100644 --- a/examples/src/App.vue +++ b/examples/src/App.vue @@ -1,6 +1,6 @@