Skip to content

Instantly share code, notes, and snippets.

View fmgono's full-sized avatar

Fathan Margono fmgono

View GitHub Profile
@vielhuber
vielhuber / Component.vue
Last active January 17, 2023 21:29
global helpers helper functions #vue
<template>
<div :test="$helpers.foo1()" :test2="bar()"></div>
</template>
<script>
import { bar } from '@/helpers/utils';
</script>