You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/server-side-rendering/samples/import-non-component/main.html

14 lines
240 B

<div>i got {{problems}} problems</div>
<div>the answer is {{answer}}</div>
<script>
import answer from './answer.js';
import problems from './problems.js';
export default {
data () {
return { answer, problems };
}
};
</script>