11 lines
108 B

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