mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 11:15:14 +00:00
11 lines
125 B
HTML
11 lines
125 B
HTML
<h1>{set.has('x')}</h1>
|
|
|
|
<script>
|
|
export default {
|
|
preload() {
|
|
return {
|
|
set: new Set(['x'])
|
|
};
|
|
}
|
|
};
|
|
</script> |