宋铄运 (Alan Song)
宋铄运 (Alan Song)
How about using one handler with multiple parameters? ``` handleValid(value, type) { this[type]= value this[type + 'Valid'] = true }, ``` inside components: ``` this.$emit('valid', value, 'email') ... this.$emit('valid', value,...
The document is probably not suitable for reference according to the section > Status of This Memo > Internet-Drafts are draft documents valid for a maximum of six months and...
I've ran into this error too, and it was caused by using `OAuth2.createService(...).setScope('')`(empty string) or not calling `setScope`. The reason I did this is that our API had a behavior...
> Maybe we should introduce a new kind of route that cannot be directly navigated but that can be used to replace the view of another route Hmm.. Maybe we...
Could there be an alternative css file that doesn't have the "Variable" suffix? We're currently developing a rich text editor that supports fonts. By copying the content, HTML containing the...
Will give that a try. Thanks! ~~As for the bundling part, it's fine as we're using vite that emits woff2 files to `dist/assets` which would eventually be served by cloudflare....
I think there's a valid use case for setting $set on existing properties. In my application code I have a `hashMap` object that is initially empty, and I call `this.$set(hashMap,...
I see... though there's another question: Why not just make it work too when there's already a non-reactive property? 😄 I don't see why there should be a limit.