Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яким методом можна створити новий Vue.js-компонент?
Vue.component('componentName', { ... });
Vue.create('componentName', { ... });
Vue({ component: 'componentName', ... });
new Vue.component('componentName', { ... });
new Vue({ component: 'componentName', ... });
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!