<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="1" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[1]</anchor-end> <cite xml:lang="en">Directives - vue.js</cite>
( (<time>2014-02-13 20:36:50 +09:00</time> 版))
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="http://vuejs.org/api/directives.html">http://vuejs.org/api/directives.html</anchor-external></p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="2" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[2]</anchor-end> <cite xml:lang="en">Getting Started - vue.js</cite>
( (<time>2014-02-13 20:36:50 +09:00</time> 版))
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="http://vuejs.org/guide/">http://vuejs.org/guide/</anchor-external></p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="3" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[3]</anchor-end> <cite xml:lang="en">Directives In Depth - vue.js</cite>
( (<time>2014-02-13 20:36:50 +09:00</time> 版))
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="http://vuejs.org/guide/directives.html">http://vuejs.org/guide/directives.html</anchor-external></p><figure class="quote"><figcaption><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="4" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[4]</anchor-end> <cite xml:lang="en">Vue.js</cite>
( (<time>2017-03-14 13:31:49 +09:00</time>))
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://vuejs.org/v2/api/#Directives">https://vuejs.org/v2/api/#Directives</anchor-external></figcaption><blockquote><p>Example:</p><p>&lt;!-- method handler --&gt;</p><p>&lt;button v-on:click=&quot;doThis&quot;&gt;&lt;/button&gt;</p><p>&lt;!-- inline statement --&gt;</p><p>&lt;button v-on:click=&quot;doThat('hello', $event)&quot;&gt;&lt;/button&gt;</p><p>&lt;!-- shorthand --&gt;</p><p>&lt;button @click=&quot;doThis&quot;&gt;&lt;/button&gt;</p><p>&lt;!-- stop propagation --&gt;</p><p>&lt;button @click.stop=&quot;doThis&quot;&gt;&lt;/button&gt;</p><p>&lt;!-- prevent default --&gt;</p><p>&lt;button @click.prevent=&quot;doThis&quot;&gt;&lt;/button&gt;</p><p>&lt;!-- prevent default without expression --&gt;</p><p>&lt;form @submit.prevent&gt;&lt;/form&gt;</p><p>&lt;!-- chain modifiers --&gt;</p><p>&lt;button @click.stop.prevent=&quot;doThis&quot;&gt;&lt;/button&gt;</p><p>&lt;!-- key modifier using keyAlias --&gt;</p><p>&lt;input @keyup.enter=&quot;onEnter&quot;&gt;</p><p>&lt;!-- key modifier using keyCode --&gt;</p><p>&lt;input @keyup.13=&quot;onEnter&quot;&gt;</p><p>&lt;!-- the click event will be triggered at most once --&gt;</p><p>&lt;button v-on:click.once=&quot;doThis&quot;&gt;&lt;/button&gt;</p></blockquote></figure><figure class="quote"><figcaption><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="5" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[5]</anchor-end> <cite xml:lang="en">Vue.js</cite>
( (<time>2017-03-14 13:31:49 +09:00</time>))
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://vuejs.org/v2/api/#v-bind">https://vuejs.org/v2/api/#v-bind</anchor-external></figcaption><blockquote><p>&lt;!-- bind an attribute --&gt;</p><p>&lt;img v-bind:src=&quot;imageSrc&quot;&gt;</p><p>&lt;!-- shorthand --&gt;</p><p>&lt;img :src=&quot;imageSrc&quot;&gt;</p></blockquote></figure><figure class="quote"><figcaption><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="6" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[6]</anchor-end> <cite xml:lang="en">Vue.js</cite>
( (<time>2017-03-14 13:31:49 +09:00</time>))
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://vuejs.org/v2/api/#v-bind">https://vuejs.org/v2/api/#v-bind</anchor-external></figcaption><blockquote><p>&lt;!-- DOM attribute binding with prop modifier --&gt;</p><p>&lt;div v-bind:text-content.prop=&quot;text&quot;&gt;&lt;/div&gt;</p><p>&lt;!-- prop binding. &quot;prop&quot; must be declared in my-component. --&gt;</p><p>&lt;my-component :prop=&quot;someThing&quot;&gt;&lt;/my-component&gt;</p><p>&lt;!-- XLink --&gt;</p><p>&lt;svg&gt;&lt;a :xlink:special=&quot;foo&quot;&gt;&lt;/a&gt;&lt;/svg&gt;</p></blockquote></figure><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="7" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[7]</anchor-end> <cite xml:lang="en">Template Syntax — Vue.js</cite>
( (<time>2017-03-14 13:31:49 +09:00</time>))
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://vuejs.org/v2/guide/syntax.html">https://vuejs.org/v2/guide/syntax.html</anchor-external></p></body></html>