-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Home
Evan You edited this page Dec 28, 2013
·
21 revisions
- What is VueJS?
- Installation
- Getting Started
- Writing a Custom Directive
- Writing a Custom Filter
- Child Components
- Transitions
- Form Validation
- Routing
- TodoMVC Implementation : a fully specification-compliant TodoMVC implementation in ~110 SLOC.
- Firebase Example : a no-backend, multi-user realtime list with form validation.
- Component Example : an example of a highly-modular app architecture using Component as the build system.
- Vue.extend(options)
- Vue.directive(name, [directive])
- Vue.filter(name, [filter])
- Vue.component(name, [component])
- Vue.element(name, [element])
- Vue.partial(name, [partial])
- Vue.transition(name, [transition])
- Vue.config(options)
- vm.$watch(keypath, callback)
- vm.$unwatch(keypath, [callback])
- vm.$on(event, callback)
- vm.$off([event, callback])
- vm.$emit(event, [args...])
- vm.$broadcast(event, [args...])
- vm.$appendTo(element | selector)
- vm.$before(element | selector)
- vm.$after(element | selector)
- vm.$remove()
- vm.$destroy()