グローバル設定

Vue.config は Vue のグローバル設定を含んでいるオブジェクトです。あなたのアプリケーションが読み込まれる前に、下記のプロパティを変更することが出来ます:

debug

delimiters

unsafeDelimiters

silent

async

devtools

グローバル API

Vue.extend( options )

Vue.nextTick( callback )

Vue.set( object, key, value )

Vue.delete( object, key )

Vue.directive( id, [definition] )

Vue.elementDirective( id, [definition] )

Vue.filter( id, [definition] )

Vue.component( id, [definition] )

Vue.transition( id, [hooks] )

Vue.partial( id, [partial] )

Vue.use( plugin, [options] )

Vue.mixin( mixin )

オプション / データ

data

props

propsData

1.0.22+

computed

methods

watch

オプション / DOM

el

template

replace

オプション/ ライフサイクルフック

init

created

beforeCompile

compiled

activate

ready

attached

detached

beforeDestroy

destroyed

オプション / アセット

directives

elementDirectives

filters

components

transitions

partials

オプション / その他

parent

events

mixins

name

extends

1.0.22+

インスタンスプロパティ

vm.$data

vm.$el

vm.$options

vm.$parent

vm.$root

vm.$children

vm.$refs

vm.$els

インスタンスメソッド / データ

vm.$watch( expOrFn, callback, [options] )

vm.$get( expression )

vm.$set( keypath, value )

vm.$delete( key )

vm.$eval( expression )

vm.$interpolate( templateString )

vm.$log( [keypath] )

インスタンスメソッド / イベント

vm.$on( event, callback )

vm.$once( event, callback )

vm.$off( [event, callback] )

vm.$emit( event, […args] )

vm.$dispatch( event, […args] )

vm.$broadcast( event, […args] )

インスタンスメソッド / DOM

vm.$appendTo( elementOrSelector, [callback] )

vm.$before( elementOrSelector, [callback] )

vm.$after( elementOrSelector, [callback] )

vm.$remove( [callback] )

vm.$nextTick( callback )

インスタンスメソッド / ライフサイクル

vm.$mount( [elementOrSelector] )

vm.$destroy( [remove] )

ディレクティブ

v-text

v-html

v-if

v-show

v-else

v-for

v-on

v-bind

v-model

v-ref

v-el

v-pre

v-cloak

特別な要素

component

slot

partial

フィルタ

capitalize

uppercase

lowercase

currency

pluralize

json

debounce

limitBy

filterBy

orderBy

配列拡張メソッド

Vue.js は、リアクティブな更新が適切にトリガされるの維持しつつ、いくつかの一般的な配列操作を実行するために、簡単な 2 つのメソッドを Array.prototype に追加して拡張します。

array.$set(index, value)

array.$remove(reference)