Skip to content

Instantly share code, notes, and snippets.

View Aternus's full-sized avatar

Kiril Reznik Aternus

View GitHub Profile
@Aternus
Aternus / v-bind.vue
Created April 27, 2020 11:44
v-bind Vue
<template functional>
<button
class="btn btn-primary"
v-bind="data.attrs"
v-on="listeners"
>
<slot/>
</button>
</template>