Skip to content
This repository was archived by the owner on Aug 8, 2022. It is now read-only.

Commit 1a601b2

Browse files
authored
sync #28b17da (#831)
1 parent 22962f8 commit 1a601b2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/.vuepress/components/guide/contributing/translations-data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const labels = {
1212
// 在此列表中添加新项目时,你可能需要清除一下 sessionStorage。
1313
export const repos = [
1414
{ lang: 'en-us', owner: 'vuejs', repo: 'docs', branch: 'master', url: 'https://v3.vuejs.org/' },
15-
{ lang: 'id', owner: 'vuejs-id', repo: 'docs-next', branch: 'indonesian' },
15+
{ lang: 'id', owner: 'vuejs-id', repo: 'docs-next', branch: 'indonesian', url: 'https://v3-vuejsid-docs.netlify.app/' },
1616
{ lang: 'ja', owner: 'vuejs-jp', repo: 'ja.vuejs.org', branch: 'lang-ja', url: 'https://v3.ja.vuejs.org/' },
1717
{ lang: 'ko', owner: 'vuejs-kr', repo: 'docs-next', branch: 'rootKoKr', url: 'https://v3.ko.vuejs.org/' },
1818
{ lang: 'pt-br', owner: 'vuejs-br', repo: 'docs-next', branch: 'master', url: 'https://vuejsbr-docs-next.netlify.app/' },

src/guide/composition-api-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ import { ref, onMounted, watch, toRefs } from 'vue'
319319

320320
// 在我们组件中
321321
setup (props) {
322-
// 使用 `toRefs` 创建对 props 中的 `user` property 的响应式引用
322+
// 使用 `toRefs` 创建对 `props` 中的 `user` property 的响应式引用
323323
const { user } = toRefs(props)
324324

325325
const repositories = ref([])

src/guide/transitions-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Easing 也可以表达动画元素的质量。以下面的 Pen 为例,你认
176176

177177
<common-codepen-snippet title="Bouncing Ball Demo" slug="wvgqyyW" :height="500" :editable="false" />
178178

179-
你可以通过调整你的 Easing 来获得很多独特的效果,使你的动画非常时尚。CSS 允许你通过调整 cubic bezier 属性来修改 Easing,Lea Verou 开发的[这个 playground](https://cubic-bezier.com/#.17,.67,.83,.67) 对探索这个问题非常有帮助。
179+
你可以通过调整你的 Easing 来获得很多独特的效果,使你的动画非常时尚。CSS 允许你通过调整 cubic-bezier property 来修改 Easing,Lea Verou 开发的[这个 playground](https://cubic-bezier.com/#.17,.67,.83,.67) 对探索这个问题非常有帮助。
180180

181181
虽然使用 cubic-bezier ease 提供的两个控制柄可以为简单的动画获得很好的效果,但是 JavaScript 允许多个控制柄,以此支持更多的变化。
182182

0 commit comments

Comments
 (0)