Skip to content

Instantly share code, notes, and snippets.

View PKTseng's full-sized avatar
💭
coding

PKTseng

💭
coding
View GitHub Profile
@PKTseng
PKTseng / index.html
Created August 4, 2020 11:03
修飾符-preventDefault-法二
<div id="app">
<a
href="https://www.google.com/"
target="_blank"
@click.prevent="linkClick"
>
google
</a>
</div>
@PKTseng
PKTseng / index.html
Created August 4, 2020 10:47
修飾符
<div id="app">
<a
href="https://www.google.com/"
target="_blank"
@click="linkClick"
>
google
</a>
</div>
@PKTseng
PKTseng / index.html
Created August 4, 2020 10:45
修飾符
<div id="app">
<a
href="https://www.google.com/"
target="_blank"
@click="linkClick"
>
google
</a>
</div>
@PKTseng
PKTseng / index.html
Created August 4, 2020 05:35
偵聽按鍵事件keyCode簡短-任意鍵
<div id="app">
<input v-model="input" @keydown.prevent.f5="keydown">
<ul>
<li v-for="item in list">{{item}}</li>
</ul>
</div>
@PKTseng
PKTseng / index.html
Created August 4, 2020 05:09
偵聽按鍵事件keyCode簡短
<div id="app">
<input v-model="input" @keydown.enter="keydown">
<ul>
<li v-for="item in list">{{item}}</li>
</ul>
</div>
@PKTseng
PKTseng / index.html
Created August 4, 2020 03:02
偵聽按鍵事件keyCode
<div id="app">
<input v-model="input" @keydown="keydown">
<ul>
<li v-for="item in list">{{item}}</li>
</ul>
</div>
@PKTseng
PKTseng / index.html
Last active August 4, 2020 01:38
偵聽圖片 onload 事件
<div id="app">
<h2 v-if="loading">Loading</h2>
<h2 v-else>complete</h2>
<img
:class="imgClass"
@load="loading = false"
src="https://picsum.photos/500/300" alt="">
</div>
@PKTseng
PKTseng / index.html
Last active August 4, 2020 01:11
computed & watch 比較
<div id="app">
 <input v-model="a">+
 <input v-model="b">=
 <input v-model="c">
</div>
@PKTseng
PKTseng / computed-watch.markdown
Created August 4, 2020 01:11
computed & watch 比較
@PKTseng
PKTseng / index.html
Created August 4, 2020 01:10
computed & watch 比較
<div id="app">
 <input v-model="a">+
 <input v-model="b">=
 <input v-model="c">
</div>