浏览代码

Merge pull request #62 from erikscheepers/patch-2

update README.md
Caleb Porzio 5 年之前
父节点
当前提交
f4bdd906e5
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -402,7 +402,7 @@ These behave exactly like VueJs's transition directives, except they have differ
 </div>
 ```
 
-`$el` is a magic property that can be used to retreive the root component DOM node.
+`$el` is a magic property that can be used to retrieve the root component DOM node.
 
 ### `$refs`
 **Example:**
@@ -412,7 +412,7 @@ These behave exactly like VueJs's transition directives, except they have differ
 <button x-on:click="$refs.foo.innerText = 'bar'">
 ```
 
-`$refs` is a magic property that can be used to retreive DOM elements marked with `x-ref` inside the component. This is useful when you need to manually manipulate DOM elements.
+`$refs` is a magic property that can be used to retrieve DOM elements marked with `x-ref` inside the component. This is useful when you need to manually manipulate DOM elements.
 
 ---