Skip to content

Instantly share code, notes, and snippets.

View noeleo25's full-sized avatar
🦄
Remote

Noemi Leon noeleo25

🦄
Remote
View GitHub Profile
@noeleo25
noeleo25 / CustomButton.vue
Last active July 18, 2020 01:25
Vue component for Custom Button
<template>
<button
:type="btnType"
class="primary-btn">
<slot> </slot>
</button>
</template>
<script>
export default {
@noeleo25
noeleo25 / Home.vue
Last active August 12, 2020 01:39
Custom directive: sticky header after scroll
<template>
<!-- using custom directive v-sticky -->
<div class="w-100" v-sticky:top="{minWidth: 768, offset: 'vh'}">
</template>