Skip to content

Instantly share code, notes, and snippets.

@Lelectrolux
Lelectrolux / responsive-menu.html
Created January 6, 2021 18:07 — forked from Akryum/responsive-menu.html
Tailwind negate responsive breakpoints
<div class="flex !md:flex-col items-center !md:space-y-6 md:space-x-6">
<button>Menu button 1</button>
<button>Menu button 2</button>
<button>Menu button 3</button>
</div>
@Lelectrolux
Lelectrolux / List.vue
Created December 17, 2019 15:07 — forked from Akryum/List.vue
Vue - onScrollBottom composable function
<script>
import { ref } from '@vue/composition-api'
import { onScrollBottom } from '@/scroll'
export default {
setup () {
function loadMore () {
// ...
}