What problem does this feature solve?
Webpack aliases work properly for import statements in <script></script>, however not with <style></style> or <template></template> sections of Component.vue. It would be great to add this feature, so Component.vue works fine even if its location changes. That would be super cool. Btw I love Vue, thanks a lot for a great work!
What does the proposed API look like?
<style> .jumbotron { background: url('@/assets/images/welcome.jpg') center / cover; } </style> <template> <img src="@/assets/images/search.svg" alt="search button"> </template>
+ for other cases (might not be listed)