Skip to content

Commit b077f96

Browse files
authored
Merge pull request #434 from naokie/update-5th-week-of-june
2 parents a52eee9 + f0f78a1 commit b077f96

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+58
-20
lines changed

Diff for: README.md

+1-1

Diff for: src/.vuepress/components/community/themes/theme-data.js

+35-7
Original file line numberDiff line numberDiff line change
@@ -127,51 +127,79 @@ export default [
127127
},
128128
{
129129
name: 'PrimeVue',
130-
description: `オープンソースの UI コンポーネントライブラリ [PrimeVue](https://www.primefaces.org/primevue/#/?af_id=4218) は、アプリケーションを開発するための 50 を超えるフレキシブルなコンポーネントを提供しています。その中には様々なコンポーネントテーマと、 Vue CLI のアプリケーションテンプレートが用意されており、あなたがベストだと考えるルック&フィールのものを利用できます。`,
130+
description: `オープンソースの UI コンポーネントライブラリ [PrimeVue](https://www.primefaces.org/primevue/#/?af_id=4218) は、アプリケーションを開発するための 80 を超えるフレキシブルなコンポーネントを提供しています。その中には様々なコンポーネントテーマと、 Vue CLI のアプリケーションテンプレートが用意されており、あなたがベストだと考えるルック&フィールのものを利用できます。`,
131131
seeMoreUrl: 'https://www.primefaces.org/primevue/#/?af_id=4218',
132132
products: [
133133
{
134-
name: 'Sapphire',
134+
name: 'Freya',
135+
price: 59,
136+
description: 'Premium Admin Template',
137+
url: 'https://www.primefaces.org/layouts/freya-vue?af_id=4218',
138+
image: 'https://www.primefaces.org/vue-templates/freya.jpg'
139+
},
140+
{
141+
name: 'Diamond',
142+
price: 59,
143+
description: 'PrimeOne Design Admin Template',
144+
url: 'https://www.primefaces.org/layouts/diamond-vue?af_id=4218',
145+
image: 'https://www.primefaces.org/vue-templates/diamond.jpg'
146+
},
147+
{
148+
name: 'Ultima',
135149
price: 79,
136150
description: 'Material Design Admin Template',
151+
url: 'https://www.primefaces.org/layouts/ultima-vue?af_id=4218',
152+
image: 'https://www.primefaces.org/vue-templates/ultima.jpg'
153+
},
154+
{
155+
name: 'Sapphire',
156+
price: 49,
157+
description: 'Material Design Admin Template',
137158
url: 'https://www.primefaces.org/layouts/sapphire-vue?af_id=4218',
138159
image: 'https://www.primefaces.org/vue-templates/sapphire.jpg'
139160
},
140161
{
141162
name: 'Avalon',
142-
price: 79,
163+
price: 49,
143164
description: 'Bootstrap Inspired Admin Template',
144165
url: 'https://www.primefaces.org/layouts/avalon-vue?af_id=4218',
145166
image: 'https://www.primefaces.org/vue-templates/avalon.jpg'
146167
},
147168
{
148169
name: 'Serenity',
149-
price: 79,
170+
price: 49,
150171
description: 'Material Design Admin Template',
151172
url: 'https://www.primefaces.org/layouts/serenity-vue?af_id=4218',
152173
image: 'https://www.primefaces.org/vue-templates/serenity.jpg'
153174
},
154175
{
155176
name: 'Apollo',
156-
price: 79,
177+
price: 49,
157178
description: 'Admin Template with a Dark Mode',
158179
url: 'https://www.primefaces.org/layouts/apollo-vue?af_id=4218',
159180
image: 'https://www.primefaces.org/vue-templates/apollo.jpg'
160181
},
161182
{
162183
name: 'Babylon',
163-
price: 79,
184+
price: 49,
164185
description: 'Admin Template with Extensive Options',
165186
url: 'https://www.primefaces.org/layouts/babylon-vue?af_id=4218',
166187
image: 'https://www.primefaces.org/vue-templates/babylon.jpg'
167188
},
168189
{
169190
name: 'Roma',
170-
price: 59,
191+
price: 39,
171192
description: 'Admin Template with a Clean Design System',
172193
url: 'https://www.primefaces.org/layouts/roma-vue?af_id=4218',
173194
image: 'https://www.primefaces.org/vue-templates/roma.jpg'
174195
},
196+
{
197+
name: 'Prestige',
198+
price: 39,
199+
description: 'Highly Customizable Admin Template',
200+
url: 'https://www.primefaces.org/layouts/prestige-vue?af_id=4218',
201+
image: 'https://www.primefaces.org/vue-templates/prestige.jpg'
202+
},
175203
{
176204
name: 'Sigma',
177205
price: 0,

Diff for: src/.vuepress/components/guide/contributing/translations-data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const labels = {
1111
// Repos are in alphabetical order by the language code
1212
// You may need to clear your sessionStorage when adding a new item to this list
1313
export const repos = [
14-
{ lang: 'en-us', owner: 'vuejs', repo: 'docs-next', branch: 'master', url: 'https://v3.vuejs.org/' },
14+
{ lang: 'en-us', owner: 'vuejs', repo: 'docs', branch: 'master', url: 'https://v3.vuejs.org/' },
1515
{ lang: 'fr', owner: 'demahom18', repo: 'docs-next', branch: 'master', url: 'https://vue3-fr.netlify.app' },
1616
{ lang: 'id', owner: 'vuejs-id', repo: 'docs-next', branch: 'indonesian' },
1717
{ lang: 'ja', owner: 'vuejs-jp', repo: 'ja.vuejs.org', branch: 'lang-ja', url: 'https://v3.ja.vuejs.org/' },

Diff for: src/.vuepress/config.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ module.exports = {
384384
},
385385
{
386386
text: 'Devtools',
387-
link: 'https://github.com/vuejs/vue-devtools'
387+
link: 'https://devtools.vuejs.org'
388388
},
389389
{
390390
text: 'ウィークリーニュース',
@@ -433,6 +433,10 @@ module.exports = {
433433
text: '한국어',
434434
link: 'https://v3.ko.vuejs.org/'
435435
},
436+
// {
437+
// text: '日本語',
438+
// link: 'https://v3.ja.vuejs.org/'
439+
// },
436440
{
437441
text: 'Русский',
438442
link: 'https://v3.ru.vuejs.org/'
@@ -471,7 +475,8 @@ module.exports = {
471475
carbon: 'CEBDT27Y',
472476
custom: 'CKYD62QM',
473477
placement: 'vuejsorg'
474-
}
478+
},
479+
topBanner: false
475480
},
476481
plugins: [
477482
[

Diff for: src/.vuepress/public/images/breakpoint_hit.png

-512 KB

Diff for: src/.vuepress/public/images/breakpoint_set.png

-458 KB

Diff for: src/.vuepress/public/images/config_add.png

-443 KB
-128 KB

Diff for: src/.vuepress/public/images/sfc.png

-89.6 KB

Diff for: src/.vuepress/public/images/sponsors/.gitkeep

Whitespace-only changes.

Diff for: src/.vuepress/public/images/sponsors/Monterail.png

-16.7 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/bit.png

-27.7 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/chaitin.png

-4.21 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/cloudstudio.png

-10 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/devsquad.png

-29.6 KB
Binary file not shown.
-3.87 KB
Binary file not shown.
-6.82 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/gridsome.png

-41.2 KB
Binary file not shown.
-11.3 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/icons.png

-4.26 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/icons_8.png

-33.8 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/ionic.png

6.96 KB

Diff for: src/.vuepress/public/images/sponsors/modus.png

-13.1 KB
Binary file not shown.
-42.9 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/primevue.png

-42.9 KB
Binary file not shown.
-4.2 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/pullrequest.svg

-1
This file was deleted.

Diff for: src/.vuepress/public/images/sponsors/storekit.png

-3.84 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/tighten_co.png

-11.6 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/tooltwist.png

-12.9 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/unicorn.png

-996 Bytes
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/valuecoders.png

-6.22 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/vuetify.png

-7.56 KB
Binary file not shown.
-33.7 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/webdock.png

-5.44 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/webucator.png

-72.4 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/wilderminds.png

-3.27 KB
Binary file not shown.
-129 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/x_team.png

-26.7 KB
Binary file not shown.

Diff for: src/.vuepress/public/images/sponsors/yakaz.png

-18.2 KB
Binary file not shown.

Diff for: src/.vuepress/theme/data/patreon-sponsors.js

+5
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ export default {
3838
"url": "https://www.storyblok.com",
3939
"img": "storyblok.svg",
4040
"name": "Storyblok"
41+
},
42+
{
43+
"url": "https://ionicframework.com/vue?utm_source=partner&utm_medium=referral&utm_campaign=vuesponsorship&utm_content=vuedocs",
44+
"img": "ionic.png",
45+
"name": "Ionic"
4146
}
4247
],
4348
"gold_sponsors": [

Diff for: src/cookbook/debugging-in-vscode.md

+4-3

Diff for: src/guide/composition-api-template-refs.md

+1-1

Diff for: src/guide/contributing/translations.md

+2-2

Diff for: src/guide/single-file-component.md

+2-2

0 commit comments

Comments
 (0)