admin管理员组文章数量:1341411
I'm trying to nest one svelte ponent in another svelte ponent.
//index.js
import Parent from './Parent.svelte';
new Parent({
target: document.querySelector('main')
})
// Parent.svelte
<script>
import Child from "./Child.svelte";
</script>
<p>parent ponent</p>
<Child />
// Child.svelte
<p>child ponent</p>
I expect Child.svelte to be nested in Parent.svelte, but I get this error message instead
Cannot read property 'fragment' of undefined
by the way: I´m using parcel with parcel-plugin-svelte
I'm trying to nest one svelte ponent in another svelte ponent.
//index.js
import Parent from './Parent.svelte';
new Parent({
target: document.querySelector('main')
})
// Parent.svelte
<script>
import Child from "./Child.svelte";
</script>
<p>parent ponent</p>
<Child />
// Child.svelte
<p>child ponent</p>
I expect Child.svelte to be nested in Parent.svelte, but I get this error message instead
Cannot read property 'fragment' of undefined
by the way: I´m using parcel with parcel-plugin-svelte
Share Improve this question asked Jul 12, 2019 at 15:00 DanielDaniel 7172 gold badges12 silver badges27 bronze badges 5-
The
<main>
element probably doesn't exist by the time this is called. – Someone Commented Jul 12, 2019 at 15:10 - @Lewis the <main> element exists. it is hard-coded into the index.html file. This will run if I remove the nested child – Daniel Commented Jul 12, 2019 at 15:12
- when using REPL on their site your sample works to me. could your reproduce full set up in codesandbox or something similar? – skyboyer Commented Jul 14, 2019 at 15:56
-
Same issue here when I try to add a child ponent. The issue goes away if I
parcel build
instead ofparcel watch
so I suspect parcel is doing something odd in dev builds – will-hart Commented Jul 15, 2019 at 0:43 - 1 Its a confirmed bug: github./DeMoorJasper/parcel-plugin-svelte/issues/… – will-hart Commented Jul 15, 2019 at 1:08
2 Answers
Reset to default 8I had a similar issue and need to change the way how react is imported
import { React } from 'react'
need to change to
import React from 'react'
This is a known bug with parcel-svelte-plugin
. The workaround for now as per github issue #55 is to disable parcel hmr
:
parcel --no-hmr
本文标签: javascriptCannot read property 39fragment39 of undefinedStack Overflow
版权声明:本文标题:javascript - Cannot read property 'fragment' of undefined - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743669570a2519305.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论