エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
plunkerでvue その59 - Qiita
<template> <div> <h2>zundoko</h2> <span v-for="s in zundoko"> {{ s }} </span> </div> </template> ... <template> <div> <h2>zundoko</h2> <span v-for="s in zundoko"> {{ s }} </span> </div> </template> <script> define(['Vue'], function(Vue) { return new Vue({ template: template, data: { zundoko: [], zudo: ["ズン", "ドコ"], c: 0, i: 0 }, created() { while(1) { this.i = Math.floor(Math.random() * 2); this.zundoko.push(this.zudo[this.i]); if (this.i == 0) { if (this.c <= 4) this.c++; } else { if (this.c >=

