mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 11:15:14 +00:00
17 lines
174 B
HTML
17 lines
174 B
HTML
<h1>{{foo.bar()}}</h1>
|
|
|
|
<script>
|
|
export default {
|
|
preload() {
|
|
class Foo {
|
|
bar() {
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
return {
|
|
foo: new Foo()
|
|
};
|
|
}
|
|
};
|
|
</script> |