Skip to content

Commit

Permalink
Update ko (#49)
Browse files Browse the repository at this point in the history
* feat: add vuemastery banner (#2591)

* chore: fix backticks (#2612)

* fix: remove unnecessary paragraph

* fix: change redirection link (#2614)

* List transition example fix (#2611)

* feat: add pnpm, yarn and bun support in quick-start (#2605)

* bump vue

* update monterail image

* fix: Update broken link in accessibility.md (#2618)

* chore: use 3.4 rc2

* Update tauri domain (#2626)

* bump to 3.4 rc3

* fix: delete meaningless paragraphs (#2632)

* unify "See also" links (#2628)

* fix: og preview (#2633)

* feat: production error codes

* feat: add defineModel in sfc-script-setup.md

* feat: component v-model update to use defineModel + defineModel modifiers & transformers

* small tweaks to defineModel

* v-bind same-name shorthand

* computed stability optimization

* watch() once option

* prop validator receives full props as 2nd argument

* jsxImportSource

* mark reactivity transform removed

* add compile-time flags reference

* add a note

* remove unnecessary booleans

* deps: use 3.4 proper

* Revert "feat: add vuemastery banner (#2591)"

* remove unnecessary import from example (#2635)

* Correct template ref grammar (#2636)

* fix: removed events-as-props

* fix: add missing anchors on new titles (#2638)

* update vue 2 mention on intro page

* remove partner
  • Loading branch information
niceplugin authored Jan 2, 2024
1 parent cd5fc21 commit a8c7455
Show file tree
Hide file tree
Showing 36 changed files with 1,090 additions and 1,429 deletions.
21 changes: 17 additions & 4 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const nav: ThemeConfig['nav'] = [
{ text: '시작하기', link: '/guide/quick-start' },
// { text: 'Style Guide', link: '/style-guide/' },
{ text: '용어 사전', link: '/glossary/' },
{ text: '애러 참고', link: '/error-reference/' },
{
text: 'Vue 2 문서',
link: 'https://v2.ko.vuejs.org'
Expand Down Expand Up @@ -419,7 +420,8 @@ export const sidebar: ThemeConfig['sidebar'] = {
{ text: '렌더 함수', link: '/api/render-function' },
{ text: '서버 사이드 렌더링', link: '/api/ssr' },
{ text: 'TypeScript 유틸리티 타입', link: '/api/utility-types' },
{ text: '커스텀 렌더러', link: '/api/custom-renderer' }
{ text: '커스텀 렌더러', link: '/api/custom-renderer' },
{ text: '컴파일 타임 플래그', link: '/api/compile-time-flags' }
]
}
],
Expand Down Expand Up @@ -569,15 +571,25 @@ export default defineConfigWithTheme<ThemeConfig>({

head: [
['meta', { name: 'theme-color', content: '#3c8772' }],
['meta', { name: 'twitter:site', content: '@vuejs' }],
['meta', { name: 'twitter:card', content: 'summary' }],
['meta', { property: 'og:url', content: 'https://vuejs.org/' }],
['meta', { property: 'og:type', content: 'website' }],
['meta', { property: 'og:title', content: 'Vue.js' }],
[
'meta',
{
name: 'twitter:image',
property: 'og:description',
content: 'Vue.js - The Progressive JavaScript Framework'
}
],
[
'meta',
{
property: 'og:image',
content: 'https://vuejs.org/images/logo.png'
}
],
['meta', { name: 'twitter:site', content: '@vuejs' }],
['meta', { name: 'twitter:card', content: 'summary' }],
[
'link',
{
Expand Down Expand Up @@ -695,6 +707,7 @@ export default defineConfigWithTheme<ThemeConfig>({
markdown: {
config(md) {
md.use(headerPlugin)
// .use(textAdPlugin)
}
},

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"@vue/theme": "^2.2.5",
"dynamics.js": "^1.1.5",
"gsap": "^3.9.0",
"vitepress": "1.0.0-rc.31",
"vue": "^3.4.0-beta.1"
"vitepress": "1.0.0-rc.33",
"vue": "^3.4.0"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
Expand Down
Loading

1 comment on commit a8c7455

@vercel
Copy link

@vercel vercel bot commented on a8c7455 Jan 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.