rfcs icon indicating copy to clipboard operation
rfcs copied to clipboard

RFCs for substantial changes / feature additions to Vue core

Results 65 rfcs issues
Sort by recently updated
recently updated
newest added

**[View fully rendered RFC](https://github.com/JosephSilber/rfcs/blob/prop-aliases/active-rfcs/0000-prop-aliases.md)** --- Allow aliasing props, to have different external and internal names (some languages call these "argument labels"): ```js props: { externalName: { as: 'internalName' } }...

core

### What problem does this feature solve? Components might emit events that can not be statically analyzed. For example `v-model` already does this with the `update:[name || 'modelValue']`. Where `name`...

### Discussed in https://github.com/vuejs/rfcs/discussions/634 Originally posted by **LaurentLord** January 18, 2024 For compatibility reasons, I have to register my package twice (with different parameters). As a result, I get this...

When we pass ref to a component or DOM element, the ref will point to component instance or DOM element which handled by Vue internally. In some case we may...

I did not find any information about it. If has there been a discussion of this issue - please provide a link. I'm surprised that Vue treats date fields like...

## Summary There is no silver bullet to data fetching because of the different data fetching strategies and how they can define the architecture of the application and its UX....

router
3.x

Hello everyone! I'd like to discuss a feature request for Vue and it's ability to do catch errors and warnings when they occur on the server-side. I've done research on...

**I have a working rough proof-of-concept here:** https://github.com/GavinRay97/vue/commit/524d4c441852e6ad2e174d53168221b1e3eb89fb Allow binding property keys to values of the same name, the way that ES6 shorthand for object syntax works. ```js const a...

### What problem does this feature solve? I've been using svelte for a while and I completely fell in love with await block. In svelte, if you have a function...

## Summary Introduce a macro in script setup, `defineOptions`, to use Options API in `script setup`, specifically to be able to set `name`, `inheritAttrs` and `render` in `script setup`. ##...