You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now, if i use this option in single file component, it will auto fix component name in template but not in js.
<template>
<ComponentA> // this changes
</template>
<script>
var ComponentB = { components: {// this is a bug, it did not change this key'componentA': ComponentA },}<script>
What did you expect to happen?
<template>
<ComponentA> // this changes
</template>
<script>
var ComponentB = { components: {// this is a bug, it did not change this key'ComponentA': ComponentA },}<script>
What actually happened?
<template>
<ComponentA> // this changes
</template>
<script>
var ComponentB = { components: {// this is a bug, it did not change this key'componentA': ComponentA },}<script>
The text was updated successfully, but these errors were encountered:
Tell us about your environment
Please show your full configuration:
What did you do?
Now, if i use this option in single file component, it will auto fix component name in template but not in js.
What did you expect to happen?
What actually happened?
The text was updated successfully, but these errors were encountered: