Skip to content

Commit 5b1062b

Browse files
committed
Merge pull request #91 from michielvandergeest/master
Fixed typo: mathods -> methods
2 parents 06a4284 + d70102c commit 5b1062b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/api/instance-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ Defer the callback to be executed after the next DOM update cycle. Use it immedi
210210

211211
If the Vue instance didn't get an `el` option at instantiation, you can manually call `$mount(el)` to start the compilation phase. By default, the mounted element will be replaced by the instance's template. When the `replace` option is set to `false`, the template will be inserted into the mounted element and overwrite any existing inner content, unless the template contains `<content>` outlets.
212212

213-
If no argument is provided, the template will be created as an out-of-document element, and you will have to use other DOM instance mathods to insert it into the document yourself. If `replace` option is set to `false`, then an empty `<div>` will be automatically created as the wrapper element. Calling `$mount()` on an already mounted instance will have no effect. The method returns the instance itself so you can chain other instance methods after it.
213+
If no argument is provided, the template will be created as an out-of-document element, and you will have to use other DOM instance methods to insert it into the document yourself. If `replace` option is set to `false`, then an empty `<div>` will be automatically created as the wrapper element. Calling `$mount()` on an already mounted instance will have no effect. The method returns the instance itself so you can chain other instance methods after it.
214214

215215
### vm.$destroy( [remove] )
216216

0 commit comments

Comments
 (0)