Files
sapper/test/app/src/routes/preload-values/custom-class.html
2018-09-19 12:02:11 -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>