docs: ui framework => component lib

This commit is contained in:
07akioni 2021-05-25 13:21:43 +08:00
parent c986b375a3
commit b96c066a9c
6 changed files with 8 additions and 8 deletions

View File

@ -3,7 +3,7 @@
</p>
<h1 align="center">Naive UI</h1>
<p align="center">A Vue 3 UI Framework</p>
<p align="center">A Vue 3 Component Library</p>
<p align="center"><b>Rather Complete, Themable, With Typescript, Not Too Slow</b></p>
<p align="center">Interesting Somehow</p>

View File

@ -3,7 +3,7 @@
</p>
<h1 align="center">Naive UI</h1>
<p align="center">一个 Vue 3 UI 框架</p>
<p align="center">一个 Vue 3 组件库</p>
<p align="center"><b>比较完整,主题可调,使用 Typescript不算太慢</b></p>
<p align="center">有点意思</p>

View File

@ -2,7 +2,7 @@
# Naive UI
Naive UI 是一个 Vue3 UI 框架
Naive UI 是一个 Vue3 的组件库
要了解如何安装,参见[安装](installation)。

View File

@ -81,14 +81,14 @@ export default {
...i18n({
'zh-CN': {
start: '开始使用',
intro1: '一个 Vue 3 UI 框架',
intro1: '一个 Vue 3 组件库',
intro2: '比较完整,主题可调,使用 Typescript不算太慢',
intro3: '有点意思',
intro4: '换个主题'
},
'en-US': {
start: 'Get Started',
intro1: 'A Vue 3 UI Framework',
intro1: 'A Vue 3 Component Library',
intro2: 'Rather Complete, Themeable, With Typescript, Not Too Slow',
intro3: 'Interesting Somehow',
intro4: 'Change Theme'

View File

@ -17,9 +17,9 @@
<script>
function deriveTitleFromLocale(locale = navigator.language) {
if (locale === 'zh-CN') {
document.title = 'Naive UI: 一个 Vue 3 UI 框架'
document.title = 'Naive UI: 一个 Vue 3 组件库'
} else {
document.title = 'Naive UI: A Vue 3 UI Framework'
document.title = 'Naive UI: A Vue 3 Component Library'
}
}
deriveTitleFromLocale()

View File

@ -1,7 +1,7 @@
{
"name": "naive-ui",
"version": "2.8.0",
"description": "A Vue 3 UI Framework. Rather Complete, Themable, With Typescript, Not Too Slow",
"description": "A Vue 3 Component Library. Rather Complete, Themable, With Typescript, Not Too Slow",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {