Feature summary (what you would like to be able to do and where):
It should be possible for redirects to exist for "vue" content model.
Use case(s) (list the steps that you performed to discover that problem, and describe the actual underlying problem which you want to solve. Do not describe only a solution):
I create a Vue component such as "Foo.vue" similar to this (may need some changes to work with MediaWiki):
<script setup>import Component from './Bar.vue';</script><template><Component/></template>
On my local machine, this code effectively "redirects" calls from Foo.vue to Bar.vue. There may be a better way to specify this component without taking up so many characters (or maybe this is the best that is possible).
Benefits (why should this be implemented?):
In case a Vue component moves the old component location should link back.