mirror of https://github.com/sveltejs/svelte
27 lines
337 B
27 lines
337 B
<p>{value}</p>
|
|
|
|
<script>
|
|
function throwError() {
|
|
throw new Error('nope');
|
|
}
|
|
|
|
const createElement = throwError;
|
|
const createElement$ = throwError;
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: template() + template$()
|
|
};
|
|
}
|
|
};
|
|
|
|
function template() {
|
|
return 'a';
|
|
}
|
|
|
|
function template$() {
|
|
return 'b';
|
|
}
|
|
</script>
|