Skip to content
Snippets Groups Projects
Commit 5321953b authored by Julian's avatar Julian
Browse files

Fix linter

parent 41f31a0c
No related branches found
No related tags found
1 merge request!2Resolve "Implement basic functionality"
......@@ -3,7 +3,7 @@ import components from "./components";
const plugin = {
install(Vue) {
for (const prop in components) {
if (components.hasOwnProperty(prop)) {
if (components.hasOwn(prop)) {
const component = components[prop];
Vue.component(component.name, component);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment