Skip to content

Commit ce2a35a

Browse files
committed
chore: 主页调整
1 parent 6270877 commit ce2a35a

10 files changed

Lines changed: 68 additions & 143 deletions

File tree

.github/workflows/deploy-example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [main]
66
paths:
7-
- 'apps/examples/**'
7+
- 'apps/example/**'
88
- pnpm-lock.yaml
99
- pnpm-workspace.yaml
1010
workflow_dispatch:

README.md

Lines changed: 3 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -56,57 +56,6 @@
5656

5757
## 生态
5858

59-
<table>
60-
<tr>
61-
<th colspan="3" align="center">
62-
<a href="https://hooray.github.io/fantastic-startkit/" target="_blank">Fantastic-startkit</a>
63-
</th>
64-
</tr>
65-
<tr>
66-
<th colspan="3" align="center">
67-
一款简单好用的 Vue3 项目启动套件
68-
</th>
69-
</tr>
70-
</table>
71-
72-
<table>
73-
<tr>
74-
<th colspan="3" align="center">
75-
<a href="https://one-step-admin.hurui.me" target="_blank">One-step-admin</a>
76-
</th>
77-
</tr>
78-
<tr>
79-
<th colspan="3" align="center">
80-
一款干啥都快人一步的 Vue 后台管理系统框架
81-
</th>
82-
</tr>
83-
<tr>
84-
<td><img src="https://one-step-admin.hurui.me/preview1.png" alt="" /></td>
85-
<td><img src="https://one-step-admin.hurui.me/preview2.png" alt="" /></td>
86-
<td><img src="https://one-step-admin.hurui.me/preview3.png" alt="" /></td>
87-
</tr>
88-
<tr>
89-
<td><img src="https://one-step-admin.hurui.me/preview4.png" alt="" /></td>
90-
<td><img src="https://one-step-admin.hurui.me/preview5.png" alt="" /></td>
91-
<td><img src="https://one-step-admin.hurui.me/preview6.png" alt="" /></td>
92-
</tr>
93-
</table>
94-
95-
<table>
96-
<tr>
97-
<th colspan="4" align="center">
98-
<a href="https://fantastic-mobile.hurui.me" target="_blank">Fantastic-mobile</a>
99-
</th>
100-
</tr>
101-
<tr>
102-
<th colspan="4" align="center">
103-
一款自成一派的移动端 H5 框架
104-
</th>
105-
</tr>
106-
<tr>
107-
<td><img src="https://fantastic-mobile.hurui.me/preview1.png" alt="" /></td>
108-
<td><img src="https://fantastic-mobile.hurui.me/preview2.png" alt="" /></td>
109-
<td><img src="https://fantastic-mobile.hurui.me/preview3.png" alt="" /></td>
110-
<td><img src="https://fantastic-mobile.hurui.me/preview4.png" alt="" /></td>
111-
</tr>
112-
</table>
59+
- [`Fantastic-startkit`](https://hooray.github.io/fantastic-startkit/) - 简单好用的 Vue3 项目启动套件
60+
- [`Fantastic-mobile`](https://fantastic-mobile.hurui.me/) - 让你的 H5 项目拥有稳固的工程底座
61+
- [`One-step-admin`](https://one-step-admin.hurui.me) - 干啥都快人一步的 Vue 中后台管理系统框架

apps/core-ant-design-vue/src/views/index.vue

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ watch(versionType, (val) => {
1010
1111
const products = ref([
1212
{
13-
id: 'startkit',
1413
name: 'Fantastic-startkit',
15-
tagline: '一款简单好用的 Vue3 项目启动套件',
14+
tagline: '简单好用的 Vue3 项目启动套件',
1615
logo: 'https://cn.vuejs.org/logo.svg',
1716
url: 'https://hooray.github.io/fantastic-startkit',
1817
features: [
@@ -25,19 +24,17 @@ const products = ref([
2524
],
2625
},
2726
{
28-
id: 'admin',
29-
name: 'Fantastic-admin',
30-
tagline: '一款开箱即用的 Vue 中后台管理系统框架',
31-
logo: 'https://fantastic-admin.hurui.me/logo.svg',
32-
url: 'https://fantastic-admin.hurui.me',
27+
name: 'Fantastic-mobile',
28+
tagline: '让你的 H5 项目拥有稳固的工程底座',
29+
logo: 'https://fantastic-mobile.hurui.me/logo.png',
30+
url: 'https://fantastic-mobile.hurui.me',
3331
images: [
34-
'https://fantastic-admin.hurui.me/hero_preview.png',
32+
'https://fantastic-mobile.hurui.me/hero_preview.png',
3533
],
3634
},
3735
{
38-
id: 'onestep',
3936
name: 'One-step-admin',
40-
tagline: '一款干啥都快人一步的 Vue 中后台系统框架',
37+
tagline: '干啥都快人一步的 Vue 中后台系统框架',
4138
logo: 'https://one-step-admin.hurui.me/logo.png',
4239
url: 'https://one-step-admin.hurui.me',
4340
images: [
@@ -192,7 +189,7 @@ function open(url: string) {
192189
<div class="gap-4 grid md-grid-cols-3">
193190
<div
194191
v-for="(product, i) in products"
195-
:key="product.id"
192+
:key="product.name"
196193
class="group card-enter border rounded-xl bg-neutral-950/[.012] dark:bg-white/5"
197194
:style="{ animationDelay: `${i * 80}ms` }"
198195
>

apps/core-antdv-next/src/views/index.vue

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ watch(versionType, (val) => {
1010
1111
const products = ref([
1212
{
13-
id: 'startkit',
1413
name: 'Fantastic-startkit',
15-
tagline: '一款简单好用的 Vue3 项目启动套件',
14+
tagline: '简单好用的 Vue3 项目启动套件',
1615
logo: 'https://cn.vuejs.org/logo.svg',
1716
url: 'https://hooray.github.io/fantastic-startkit',
1817
features: [
@@ -25,19 +24,17 @@ const products = ref([
2524
],
2625
},
2726
{
28-
id: 'admin',
29-
name: 'Fantastic-admin',
30-
tagline: '一款开箱即用的 Vue 中后台管理系统框架',
31-
logo: 'https://fantastic-admin.hurui.me/logo.svg',
32-
url: 'https://fantastic-admin.hurui.me',
27+
name: 'Fantastic-mobile',
28+
tagline: '让你的 H5 项目拥有稳固的工程底座',
29+
logo: 'https://fantastic-mobile.hurui.me/logo.png',
30+
url: 'https://fantastic-mobile.hurui.me',
3331
images: [
34-
'https://fantastic-admin.hurui.me/hero_preview.png',
32+
'https://fantastic-mobile.hurui.me/hero_preview.png',
3533
],
3634
},
3735
{
38-
id: 'onestep',
3936
name: 'One-step-admin',
40-
tagline: '一款干啥都快人一步的 Vue 中后台系统框架',
37+
tagline: '干啥都快人一步的 Vue 中后台系统框架',
4138
logo: 'https://one-step-admin.hurui.me/logo.png',
4239
url: 'https://one-step-admin.hurui.me',
4340
images: [
@@ -192,7 +189,7 @@ function open(url: string) {
192189
<div class="gap-4 grid md-grid-cols-3">
193190
<div
194191
v-for="(product, i) in products"
195-
:key="product.id"
192+
:key="product.name"
196193
class="group card-enter border rounded-xl bg-neutral-950/[.012] dark:bg-white/5"
197194
:style="{ animationDelay: `${i * 80}ms` }"
198195
>

apps/core-arco-design-vue/src/views/index.vue

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ watch(versionType, (val) => {
1010
1111
const products = ref([
1212
{
13-
id: 'startkit',
1413
name: 'Fantastic-startkit',
15-
tagline: '一款简单好用的 Vue3 项目启动套件',
14+
tagline: '简单好用的 Vue3 项目启动套件',
1615
logo: 'https://cn.vuejs.org/logo.svg',
1716
url: 'https://hooray.github.io/fantastic-startkit',
1817
features: [
@@ -25,19 +24,17 @@ const products = ref([
2524
],
2625
},
2726
{
28-
id: 'admin',
29-
name: 'Fantastic-admin',
30-
tagline: '一款开箱即用的 Vue 中后台管理系统框架',
31-
logo: 'https://fantastic-admin.hurui.me/logo.svg',
32-
url: 'https://fantastic-admin.hurui.me',
27+
name: 'Fantastic-mobile',
28+
tagline: '让你的 H5 项目拥有稳固的工程底座',
29+
logo: 'https://fantastic-mobile.hurui.me/logo.png',
30+
url: 'https://fantastic-mobile.hurui.me',
3331
images: [
34-
'https://fantastic-admin.hurui.me/hero_preview.png',
32+
'https://fantastic-mobile.hurui.me/hero_preview.png',
3533
],
3634
},
3735
{
38-
id: 'onestep',
3936
name: 'One-step-admin',
40-
tagline: '一款干啥都快人一步的 Vue 中后台系统框架',
37+
tagline: '干啥都快人一步的 Vue 中后台系统框架',
4138
logo: 'https://one-step-admin.hurui.me/logo.png',
4239
url: 'https://one-step-admin.hurui.me',
4340
images: [
@@ -192,7 +189,7 @@ function open(url: string) {
192189
<div class="gap-4 grid md-grid-cols-3">
193190
<div
194191
v-for="(product, i) in products"
195-
:key="product.id"
192+
:key="product.name"
196193
class="group card-enter border rounded-xl bg-neutral-950/[.012] dark:bg-white/5"
197194
:style="{ animationDelay: `${i * 80}ms` }"
198195
>

apps/core-naive-ui/src/views/index.vue

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ watch(versionType, (val) => {
1010
1111
const products = ref([
1212
{
13-
id: 'startkit',
1413
name: 'Fantastic-startkit',
15-
tagline: '一款简单好用的 Vue3 项目启动套件',
14+
tagline: '简单好用的 Vue3 项目启动套件',
1615
logo: 'https://cn.vuejs.org/logo.svg',
1716
url: 'https://hooray.github.io/fantastic-startkit',
1817
features: [
@@ -25,19 +24,17 @@ const products = ref([
2524
],
2625
},
2726
{
28-
id: 'admin',
29-
name: 'Fantastic-admin',
30-
tagline: '一款开箱即用的 Vue 中后台管理系统框架',
31-
logo: 'https://fantastic-admin.hurui.me/logo.svg',
32-
url: 'https://fantastic-admin.hurui.me',
27+
name: 'Fantastic-mobile',
28+
tagline: '让你的 H5 项目拥有稳固的工程底座',
29+
logo: 'https://fantastic-mobile.hurui.me/logo.png',
30+
url: 'https://fantastic-mobile.hurui.me',
3331
images: [
34-
'https://fantastic-admin.hurui.me/hero_preview.png',
32+
'https://fantastic-mobile.hurui.me/hero_preview.png',
3533
],
3634
},
3735
{
38-
id: 'onestep',
3936
name: 'One-step-admin',
40-
tagline: '一款干啥都快人一步的 Vue 中后台系统框架',
37+
tagline: '干啥都快人一步的 Vue 中后台系统框架',
4138
logo: 'https://one-step-admin.hurui.me/logo.png',
4239
url: 'https://one-step-admin.hurui.me',
4340
images: [
@@ -192,7 +189,7 @@ function open(url: string) {
192189
<div class="gap-4 grid md-grid-cols-3">
193190
<div
194191
v-for="(product, i) in products"
195-
:key="product.id"
192+
:key="product.name"
196193
class="group card-enter border rounded-xl bg-neutral-950/[.012] dark:bg-white/5"
197194
:style="{ animationDelay: `${i * 80}ms` }"
198195
>

apps/core-tdesign/src/views/index.vue

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ watch(versionType, (val) => {
1010
1111
const products = ref([
1212
{
13-
id: 'startkit',
1413
name: 'Fantastic-startkit',
15-
tagline: '一款简单好用的 Vue3 项目启动套件',
14+
tagline: '简单好用的 Vue3 项目启动套件',
1615
logo: 'https://cn.vuejs.org/logo.svg',
1716
url: 'https://hooray.github.io/fantastic-startkit',
1817
features: [
@@ -25,19 +24,17 @@ const products = ref([
2524
],
2625
},
2726
{
28-
id: 'admin',
29-
name: 'Fantastic-admin',
30-
tagline: '一款开箱即用的 Vue 中后台管理系统框架',
31-
logo: 'https://fantastic-admin.hurui.me/logo.svg',
32-
url: 'https://fantastic-admin.hurui.me',
27+
name: 'Fantastic-mobile',
28+
tagline: '让你的 H5 项目拥有稳固的工程底座',
29+
logo: 'https://fantastic-mobile.hurui.me/logo.png',
30+
url: 'https://fantastic-mobile.hurui.me',
3331
images: [
34-
'https://fantastic-admin.hurui.me/hero_preview.png',
32+
'https://fantastic-mobile.hurui.me/hero_preview.png',
3533
],
3634
},
3735
{
38-
id: 'onestep',
3936
name: 'One-step-admin',
40-
tagline: '一款干啥都快人一步的 Vue 中后台系统框架',
37+
tagline: '干啥都快人一步的 Vue 中后台系统框架',
4138
logo: 'https://one-step-admin.hurui.me/logo.png',
4239
url: 'https://one-step-admin.hurui.me',
4340
images: [
@@ -192,7 +189,7 @@ function open(url: string) {
192189
<div class="gap-4 grid md-grid-cols-3">
193190
<div
194191
v-for="(product, i) in products"
195-
:key="product.id"
192+
:key="product.name"
196193
class="group card-enter border rounded-xl bg-neutral-950/[.012] dark:bg-white/5"
197194
:style="{ animationDelay: `${i * 80}ms` }"
198195
>

apps/core-vexip-ui/src/views/index.vue

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ watch(versionType, (val) => {
1010
1111
const products = ref([
1212
{
13-
id: 'startkit',
1413
name: 'Fantastic-startkit',
15-
tagline: '一款简单好用的 Vue3 项目启动套件',
14+
tagline: '简单好用的 Vue3 项目启动套件',
1615
logo: 'https://cn.vuejs.org/logo.svg',
1716
url: 'https://hooray.github.io/fantastic-startkit',
1817
features: [
@@ -25,19 +24,17 @@ const products = ref([
2524
],
2625
},
2726
{
28-
id: 'admin',
29-
name: 'Fantastic-admin',
30-
tagline: '一款开箱即用的 Vue 中后台管理系统框架',
31-
logo: 'https://fantastic-admin.hurui.me/logo.svg',
32-
url: 'https://fantastic-admin.hurui.me',
27+
name: 'Fantastic-mobile',
28+
tagline: '让你的 H5 项目拥有稳固的工程底座',
29+
logo: 'https://fantastic-mobile.hurui.me/logo.png',
30+
url: 'https://fantastic-mobile.hurui.me',
3331
images: [
34-
'https://fantastic-admin.hurui.me/hero_preview.png',
32+
'https://fantastic-mobile.hurui.me/hero_preview.png',
3533
],
3634
},
3735
{
38-
id: 'onestep',
3936
name: 'One-step-admin',
40-
tagline: '一款干啥都快人一步的 Vue 中后台系统框架',
37+
tagline: '干啥都快人一步的 Vue 中后台系统框架',
4138
logo: 'https://one-step-admin.hurui.me/logo.png',
4239
url: 'https://one-step-admin.hurui.me',
4340
images: [
@@ -192,7 +189,7 @@ function open(url: string) {
192189
<div class="gap-4 grid md-grid-cols-3">
193190
<div
194191
v-for="(product, i) in products"
195-
:key="product.id"
192+
:key="product.name"
196193
class="group card-enter border rounded-xl bg-neutral-950/[.012] dark:bg-white/5"
197194
:style="{ animationDelay: `${i * 80}ms` }"
198195
>

apps/core/src/views/index.vue

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ watch(versionType, (val) => {
1010
1111
const products = ref([
1212
{
13-
id: 'startkit',
1413
name: 'Fantastic-startkit',
15-
tagline: '一款简单好用的 Vue3 项目启动套件',
14+
tagline: '简单好用的 Vue3 项目启动套件',
1615
logo: 'https://cn.vuejs.org/logo.svg',
1716
url: 'https://hooray.github.io/fantastic-startkit',
1817
features: [
@@ -25,19 +24,17 @@ const products = ref([
2524
],
2625
},
2726
{
28-
id: 'admin',
29-
name: 'Fantastic-admin',
30-
tagline: '一款开箱即用的 Vue 中后台管理系统框架',
31-
logo: 'https://fantastic-admin.hurui.me/logo.svg',
32-
url: 'https://fantastic-admin.hurui.me',
27+
name: 'Fantastic-mobile',
28+
tagline: '让你的 H5 项目拥有稳固的工程底座',
29+
logo: 'https://fantastic-mobile.hurui.me/logo.png',
30+
url: 'https://fantastic-mobile.hurui.me',
3331
images: [
34-
'https://fantastic-admin.hurui.me/hero_preview.png',
32+
'https://fantastic-mobile.hurui.me/hero_preview.png',
3533
],
3634
},
3735
{
38-
id: 'onestep',
3936
name: 'One-step-admin',
40-
tagline: '一款干啥都快人一步的 Vue 中后台系统框架',
37+
tagline: '干啥都快人一步的 Vue 中后台系统框架',
4138
logo: 'https://one-step-admin.hurui.me/logo.png',
4239
url: 'https://one-step-admin.hurui.me',
4340
images: [
@@ -192,7 +189,7 @@ function open(url: string) {
192189
<div class="gap-4 grid md-grid-cols-3">
193190
<div
194191
v-for="(product, i) in products"
195-
:key="product.id"
192+
:key="product.name"
196193
class="group card-enter border rounded-xl bg-neutral-950/[.012] dark:bg-white/5"
197194
:style="{ animationDelay: `${i * 80}ms` }"
198195
>

0 commit comments

Comments
 (0)