Skip to content

Commit fa0ae81

Browse files
committed
added files
0 parents commit fa0ae81

30 files changed

+17112
-0
lines changed

docs/.vuepress/clientAppEnhance.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import bounce_ui from './public/dist/bounce_ui.umd.js';
2+
export default ({
3+
app, router, siteData
4+
}) => {
5+
app.use(bounce_ui);
6+
}

docs/.vuepress/config.js

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
module.exports = {
2+
title: 'Bounce UI',
3+
base: "/",
4+
head: [
5+
[
6+
"link",
7+
{
8+
rel: "stylesheet",
9+
href: "/dist/bounce_ui.css"
10+
}
11+
],
12+
[
13+
"link",
14+
{
15+
rel: "preconnect",
16+
href: "https://fonts.googleapis.com"
17+
}
18+
],
19+
[
20+
"link",
21+
{
22+
rel: "preconnect",
23+
href: "https://fonts.gstatic.com"
24+
}
25+
],
26+
[
27+
"link",
28+
{
29+
rel: "stylesheet",
30+
href: "https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&display=swap"
31+
}
32+
],
33+
[
34+
"link",
35+
{
36+
rel: "stylesheet",
37+
href: "https://cdnjs.cloudflare.com/ajax/libs/gridlex/2.7.1/gridlex.min.css"
38+
}
39+
],
40+
[
41+
"link",
42+
{
43+
rel: "stylesheet",
44+
href: "https://cdn.jsdelivr.net/npm/@mdi/font@6.4.95/css/materialdesignicons.min.css"
45+
}
46+
]
47+
],
48+
themeConfig: {
49+
logo: '/images/logo.png',
50+
navbar: [
51+
{
52+
text: 'Components',
53+
link: '/components',
54+
},
55+
{
56+
text: 'Guide',
57+
link: '/guide/',
58+
}
59+
],
60+
},
61+
plugins: [
62+
['vuepress-plugin-demoblock-plus'],
63+
[
64+
'@vuepress/plugin-search',
65+
{
66+
locales: {
67+
'/': {
68+
placeholder: 'Search',
69+
}
70+
},
71+
},
72+
],
73+
]
74+
}

0 commit comments

Comments
 (0)