11 lines
110 B

{{foo()}}
<script>
export default {
helpers: {
foo () {
return Math.random();
}
}
}
</script>