Skip to content

Instantly share code, notes, and snippets.

View ryutamaki's full-sized avatar
🏠
Working from home

Ryu Tamaki ryutamaki

🏠
Working from home
View GitHub Profile
@ryutamaki
ryutamaki / .prettierignore
Last active May 9, 2018 15:17
Config files for prettier
package.json
package-lock.json
@ryutamaki
ryutamaki / RangedVFor.vue
Last active May 9, 2018 15:12
ranged v-for: Repeat tags with constant times using v-for
<template>
<div
v-for="index in 10"
:key="index"
>
{{ index }}
</div>
</template>