Skip to content

Instantly share code, notes, and snippets.

@Sovai
Sovai / Component.vue
Created July 27, 2021 03:56 — forked from vielhuber/Component.vue
global helpers helper functions #vue
<template>
<div :test="$helpers.foo1()" :test2="bar()"></div>
</template>
<script>
import { bar } from '@/helpers/utils';
</script>