From d70102cabdf19fe29d89365d78b3c5d75df40be7 Mon Sep 17 00:00:00 2001 From: Michiel van der Geest Date: Tue, 21 Jul 2015 20:21:09 -0300 Subject: [PATCH] Fixed typo: mathods -> methods --- source/api/instance-methods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/api/instance-methods.md b/source/api/instance-methods.md index 95f9ef6c92..23c7e535c9 100644 --- a/source/api/instance-methods.md +++ b/source/api/instance-methods.md @@ -210,7 +210,7 @@ Defer the callback to be executed after the next DOM update cycle. Use it immedi 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 `` outlets. -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 `
` 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. +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 `
` 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. ### vm.$destroy( [remove] )