-
-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stores don't seem to work #104
Comments
Can you provide the code that doesn't work? |
Hey - thanks for fast response. I couldn't get the included example for |
Any update on this? |
I was able to narrow this down: This works fine: # Example.svelte
<script>
import { writable, derived } from "svelte/store";
</script> However this breaks: # Example.svelte
<script>
import store from "./store";
</script> # store.js
import { writable, derived } from "svelte/store";
export default {}
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Following the Svelte docs for creating a simple store, I can't import the exported variable.
The text was updated successfully, but these errors were encountered: