Rename "input.vue" to "input_wrapper.vue"
The following discussion from !81412 (merged) should be addressed:
-
@aturinske started a discussion: (+1 comment) suggestion: usually when a component is imported, it is named the same as the component (i.e.
InputWrapper
=>Input
); is there a reason you named thisInputWrapper
? It confused me because I went to go look for this component in the code base and immediately searched forInputWrapper.vue
because that is the convention. I suggest either changing the name of the import toInput
or creating a follow-up that renamesinput.vue
=>input_wrapper.vue
. Either works for me.import Input from './input.vue';