## My Custom Component <div id="app"> <my-component></my-component> </div> <script src="https://cdn.jsdelivr.net/npm/vue@2"></script> <script> Vue.component('my-component', { template: '<div>Hello from my custom component!</div>' }); new Vue({ el: '#app' }); </script> fefefefefe