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