├── .gitee ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── issue-template-bug.md │ └── issue-template-feature.md ├── PULL_REQUEST_TEMPLATE │ ├── pull-request-template-feat.md │ └── pull-request-template-fix.md └── workflows │ └── deploy.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── README.zh-Hans.md ├── babel.config.js ├── build ├── build-base.js ├── build-example.js ├── build-lib-all.js ├── build-lib-components.js └── gen-styles.js ├── docs └── README.md ├── package.json ├── src ├── index.js ├── packages │ ├── button │ │ ├── index.js │ │ └── src │ │ │ └── index.vue │ └── link │ │ └── index.js └── styles │ ├── common │ └── var.styl │ ├── index.styl │ └── mixins │ └── mixins.styl └── website └── README.md /.gitee/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## 1. Your usage scenarios? | 您使用的场景? 4 | 5 | ## 2. What did you do? | 您做了什么操作? 6 | 7 | ## 3. What are your problems? | 您遇到了什么问题? 8 | 9 | ## 4. What is your expected outcome? | 您期望的结果是怎样的? 10 | -------------------------------------------------------------------------------- /.gitee/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## 详细描述 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: misitebao # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: #['https://blog.misitebao.com'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template-bug.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Template | 问题提交模板 3 | about: Please describe in detail the problems you encountered in the process of using | 请详细描述您使用过程中遇到的问题 4 | title: "[Bug]Some problem... | 一些问题。。。" 5 | --- 6 | 7 | 8 | 9 | #### 1. Your usage scenarios? | 您使用的场景? 10 | 11 | #### 2. What did you do? | 您做了什么操作? 12 | 13 | #### 3. What are your problems? | 您遇到了什么问题? 14 | 15 | #### 4. What is your expected outcome? | 您期望的结果是怎样的? 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template-feature.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature Template | 功能提交模板 3 | about: Please describe in detail the features you expect | 请详细描述您期望的功能 4 | title: "[Feature]Some feature... | 一些功能。。。" 5 | --- 6 | 7 | 8 | 9 | #### 1. Your usage scenarios? | 您使用的场景? 10 | 11 | #### 2. What is your expected outcome? | 您期望的结果是怎样的? 12 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull-request-template-feat.md: -------------------------------------------------------------------------------- 1 | 2 | ## New feature description | 新增功能描述 -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull-request-template-fix.md: -------------------------------------------------------------------------------- 1 | 2 | ## Fix bug description | 修复Bug描述 -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | # name: Deploy | 部署 2 | # on: 3 | # push: 4 | # branches: [main] 5 | # # pull_request: 6 | # # branches: [master] 7 | # jobs: 8 | # build-and-deploy: 9 | # runs-on: ubuntu-latest 10 | # if: github.repository == 'misitebao/template-git-repository' 11 | # steps: 12 | # - name: Checkout | 切换到部署分支 13 | # uses: actions/checkout@v2 14 | # with: 15 | # ref: "master" 16 | # submodules: true 17 | # fetch-depth: 0 18 | 19 | # - name: Setup Hugo | 设置Hugo环境 20 | # uses: peaceiris/actions-hugo@v2 21 | # with: 22 | # hugo-version: "0.81.0" 23 | # extended: true 24 | 25 | # - name: Build | 构建 26 | # run: hugo 27 | 28 | # - name: Deploy to Server | 部署到服务器 29 | # uses: hengkx/ssh-deploy@v1.0.1 30 | # with: 31 | # HOST: ${{ secrets.DEPLOY_HOST }} 32 | # USERNAME: ${{ secrets.DEPLOY_HOST_USER }} # 为了用户信息安全对敏感数据可以在secrets中配置请看下图 33 | # PASSWORD: ${{ secrets.DEPLOY_HOST_PASSWORD }} 34 | # SOURCE: "public" 35 | # TARGET: "/www/wwwroot/tigateam.org" 36 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | docs 4 | src 5 | test 6 | website 7 | 8 | .github 9 | .gitee 10 | .gitignore 11 | .npmignore 12 | 13 | babel.config.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 TigaTeam 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
6 | Tigaui is a high quality component library based on Vue 7 |
8 | 9 | 10 | 11 | ## 🌏 Internationalization 12 | 13 | [English](README.md) | [简体中文](README.zh-Hans.md) 14 | 15 | 16 | 17 | ## 📚 Contents 18 | 19 | - [Internationalization](#nav-1) 20 | - [Contents](#nav-2) 21 | - [Introductions](#nav-3) 22 | - [Official Website](#nav-3-1) 23 | - [Graphic Demo](#nav-4) 24 | - [Features](#nav-5) 25 | - [Architecture](#nav-6) 26 | - [Getting Started](#nav-7) 27 | - [Authors](#nav-8) 28 | - [Contributors](#nav-9) 29 | - [Community Exchange](#nav-9-1) 30 | - [Part Of Users](#nav-10) 31 | - [Release History](CHANGE.md) 32 | - [Donators](#nav-11) 33 | - [Sponsors](#nav-12) 34 | - [Thanks](#nav-13) 35 | - [License](#nav-14) 36 | 37 | 38 | 39 | ## ℹ️ Introductions 40 | 41 | `Tigaui` is a high quality component library based on `vue3.x` 42 | 43 | 44 | 45 | ### 🔔 Official Website 46 | 47 | [Official Website](https://tigaui.tigateam.org) 48 | 49 | 50 | 51 | ## 🌅 Graphic Demo 52 | 53 | 54 | 55 | ## ✳️ Features 56 | 57 | 58 | 59 | ## 🍊 Architecture 60 | 61 | 62 | 63 | ## 💎 Getting Started 64 | 65 | 66 | 67 | ## 🙆 Authors 68 | 69 | The author of this project: [Misitebao](https://github.com/misitebao). senior engineer, entrepreneur. 70 | 71 | 72 | 73 | ## 🌟 Contributors 74 | 75 | Thank you to all the contributors who participated in the development of Tigaui. [Contributors](https://github.com/tigateam/tiga-ui/graphs/contributors) 76 | 77 | 78 | 79 | ### 😵 Community Exchange 80 | 81 | 82 | 83 | ## 👼 Part Of Users 84 | 85 | 86 | 87 | ## ☕ Donators 88 | 89 | 90 | 91 | ## 💰 Sponsors 92 | 93 | 94 | 95 | ## 👏 Thanks 96 | 97 |
3 |
4 |
6 | Tigaui 是一个基于 Vue 的高质量组件库 7 |
8 | 9 | 10 | 11 | ## 🌏 国际化 12 | 13 | [English](README.md) | [简体中文](README.zh-Hans.md) 14 | 15 | 16 | 17 | ## 📚 内容目录 18 | 19 | - [国际化](#nav-1) 20 | - [内容目录](#nav-2) 21 | - [项目介绍](#nav-3) 22 | - [官方网站](#nav-3-1) 23 | - [图形演示](#nav-4) 24 | - [功能特色](#nav-5) 25 | - [架构](#nav-6) 26 | - [新手入门](#nav-7) 27 | - [关于作者](#nav-8) 28 | - [贡献者](#nav-9) 29 | - [社区交流](#nav-9-1) 30 | - [部分用户](#nav-10) 31 | - [发布记录](CHANGE.md) 32 | - [捐赠者](#nav-11) 33 | - [赞助商](#nav-12) 34 | - [特别鸣谢](#nav-13) 35 | - [版权许可](#nav-14) 36 | 37 | 38 | 39 | ## ℹ️ 项目介绍 40 | 41 | `Tigaui` 是一个基于 `Vue3.x` 的高质量组件库 42 | 43 | 44 | 45 | ### 🔔 官方网站 46 | 47 | [官方网站](https://tigaui.tigateam.org) 48 | 49 | 50 | 51 | ## 🌅 图形演示 52 | 53 | 54 | 55 | ## ✳️ 功能特色 56 | 57 | 58 | 59 | ## 🍊 架构 60 | 61 | 62 | 63 | ## 💎 新手入门 64 | 65 | 66 | 67 | ## 🙆 关于作者 68 | 69 | 本项目作者:[米司特包](https://github.com/misitebao)。高级工程师,创业者。 70 | 71 | 72 | 73 | ## 🌟 贡献者 74 | 75 | 感谢所有参与 Tigaui 开发的贡献者。[Contributors](https://github.com/tigateam/tiga-ui/graphs/contributors) 76 | 77 | 78 | 79 | ### 😵 社区交流 80 | 81 | 82 | 83 | ## 👼 部分用户 84 | 85 | 86 | 87 | ## ☕ 捐赠者 88 | 89 | 90 | 91 | ## 💰 赞助商 92 | 93 | 94 | 95 | ## 👏 鸣谢 96 | 97 |