css-tricks.com

Creating Vue.js Component Instances Programmatically

open original

Creating Vue.js Component Instances Programmatically | CSS-Tricks

I have been on a Vue.js project that required the ability to create components programmatically. By programmatically, I mean you create and insert the components completely from JavaScript, without writing anything in the template. This article aims to illustrate how different aspects of using components in a template, such as instantiation, props passing, slots, mounting, translates to JavaScript

via css-tricks.com