ComputerGuy

Results 79 comments of ComputerGuy

Similarly, I think it'd be useful if we determined when any state updates happen to see if we really need to make a value a `$.state`. For example, in [this...

> ```diff > export default function App($$anchor) { > let a = 1; > let b = 2; > var p = root(); > + var text = $.child(p); >...

> Is the concern that it's annoying to do so (which is true!) or that you don't want that documentation to be present when people hover over stuff in their...

> > Okay, so from what I'm understanding, Svelte doesn't completely support custom tagging fully as of right now? No, it's just that the element you're trying to use is...

One reason I tend to use `let` most of the time is because I might have (or will have) a `$bindable` prop, which I would want to reassign. It's less...

I like this, however, like other people, I am not sure about the execution of the idea; maybe it could be a logic block, as the `svelte:` elements usually don't...

> They compose far better than logic blocks. For example, you can create custom error boundaries for your app using the same snippet pattern: > > ```svelte > > >...

> @Ocean-OS I'm not sure what you're trying to do in that example? Half the code is commented out, is it meant to be there? What am I looking for?...

> > @Ocean-OS I'm not sure what you're trying to do in that example? Half the code is commented out, is it meant to be there? What am I looking...

> I often want the component to handle its own errors, including all $: , e.g. showing an inline error. How would I do that with this proposal? Basically, you'd...