-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace CamelCase template component references with kebab-case #35
Comments
This hasn't had the desired effect. Possible difference is:
export default {
name: 'App',
components: {
UserLoginAndRegistrationContainer,
SnackbarService
},
data() {
return {
clipped: false,
drawer: true,
fixed: false,
items: [
{
icon: 'home',
title: 'Home'
},
{
icon: 'school',
title: 'Study'
},
{
icon: 'add_to_queue',
title: 'Edit'
}
],
miniVariant: false,
right: true,
rightDrawer: false,
title: 'Skuilder'
};
}
};
@Component({
components: {
DataInputForm,
ComponentRegistration
}
})
export default class CourseEditor extends Vue {
@Prop() public course: string;
public registeredDataShapes: DataShape[] = [];
public dataShapes: DataShape[] = [];
public selectedShape: string = '';
private loading: boolean = true;
private editingMode: boolean = true;
// ... |
Above suspicion was correct. Bug filed w/ vetur at vuejs/vetur#864. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Replace eg:
<UserLogin />
with<user-login />
throughout the project. For reasons unknown to me, this helps VSCode track component definitions, etc.The text was updated successfully, but these errors were encountered: