Marsel Shaikhin
Marsel Shaikhin
Make module generator produce getters and setters for certain bindings https://github.com/vuejs/core/blob/a41c5f1f4367a9f41bcdb8c4e02f54b2378e577d/packages/compiler-sfc/__tests__/compileScript.spec.ts#L16-L52
Writing SFCs using the default JS compiler and https://github.com/unplugin/unplugin-auto-import produces not-so-optimal code. Take this for example ([playground](https://play.vuejs.org/#__PROD__eNp9kU1Lw0AQhv/KOpcq1ATpraQFlYJ6UFHBy15CMk1TN7vL7mwMhPx3Jxtaeyi97bwf7DNMD/fWJm1AWELmC1dbEh4p2LXUhdGeROMrsRIOt9ezJ1TKiG/jVHk1u5E6S6cGZ3kgbKzKCXkSItvdrfs+lochS3mKaq1tINHeNqZEtZLAvgSRspmlJ32YA3n+fltXyd4bzXD92JdQmMbWCt2bpZrxJCxFdEYvZ7rfl6iRCzg/6MUOi58z+t53oybh3aFH16KEo0e5q5Ame/P5ih2/jybTB8XpC+YHeqPCyDjFHoIuGfskF2mfG2sc1br68puOUPvDUiPomBxiXgJf6PHC6v+4i2QRe1IPMPwBKamc3g==)): ```vue const msg = ref('Hello World!') {{ msg }} ``` Correct binding type...
At the moment of writing, GitHub CI has no ARM-based hosted runners for public repositories. As a follow-up from https://github.com/phoenix-ru/fervid/pull/12, we should add tests for ARM builds using QEMU.
## Situation When using `` we can make assumptions regarding binding types. For instance, we can confidently infer the types of bindings in this example: ```vue import { ref, computed...
### 🔗 Linked issue Relates to #673, #523, #848 This is a (partial) back-port of #818 to current code. Because completely updating to `@auth/core` makes the module very unstable, we...
Follow up on #837 Does not need to be done in this PR. but as a follow-up let's: - Adapt the `~/playground-*` to use `NUXT_AUTH_ORIGIN` - Adapt any starter to...
Spec: https://github.com/vuejs/core/blob/main/packages/compiler-sfc/__tests__/compileTemplate.spec.ts TODO: Split into issues
### Describe the feature [Work in Progress] It is an often requested feature to support hooking into the calls done by NuxtAuth. Common use-cases include: - modifying the headers #961...
### 🔗 Linked issue #673 ### ❓ Type of change - [ ] 📖 Documentation (updates to the documentation, readme or JSdoc annotations) - [ ] 🐞 Bug fix (a...
You're actually right, it's a weird implementation in https://github.com/sidebase/nuxt-auth/pull/615 which accepts two identical interfaces: https://github.com/sidebase/nuxt-auth/blob/218a8465fd01fbf70562ab4cc1083dea3931d1a1/src/runtime/composables/local/useAuth.ts#L161 It should be just `signUpOptions`, will probably move this to a different breaking change _Originally...