Files
sapper/test/app/routes/preload-values/custom-class.html
2018-05-03 21:54:23 -04:00

17 lines
172 B
HTML

<h1>{foo.bar()}</h1>
<script>
export default {
preload() {
class Foo {
bar() {
return 42;
}
}
return {
foo: new Foo()
};
}
};
</script>