16 lines
152 B

<p>{thrice(foo)}</p>
<script>
export default {
data () {
return {
foo: 1
}
},
helpers: {
thrice: num => 3 * num
}
};
</script>