11 lines
113 B

{{foo(bar)}}
<script>
export default {
helpers: {
foo ( bar ) {
return bar * 2;
}
}
};
</script>