Zundokokiyoshiwith Vue.js
'use strict'
class Zundoko
constructor: ->
@data =
kiyoshi: false
zun: 0
items: []
methods:
push: ->
doko = Math.random() > 0.5
str = if doko then 'ドコ' else 'ズン'
@items.push({text:str})
if doko and @zun >= 4
@items.push({text:'キ・ヨ・シ!'})
@kiyoshi = true
if !doko then @zun++ else @zun = 0
return
kiyoshi = new Zundoko()
new Vue({el: '#kiyoshi', data: kiyoshi.data, methods: kiyoshi.methods})
미안해요. 지금 마침 커피밖에 없어요.Jade
#kiyoshi
button(type="button" @click="push" v-show="!kiyoshi") Push
ul
li(v-for="item in items" v-text="item.text")
실물은여기..
Reference
이 문제에 관하여(Zundokokiyoshiwith Vue.js), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/BYODKM/items/b1c6969f4c67136df3a3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)