今回は、Vue.jsコンポーネントの使い方と、Vue.jsコンポーネントを使用する際の注意点について、実際の事例を交えて見ていきましょう。
1. すべての Vue コンポーネントも Vue インスタンスであり、グローバル コンポーネントとローカル コンポーネントに分かれています。 登録方法は次のとおりです。<p id="app"> <my-component></my-component> <child-component></child-component></p><p id="example"> <my-component></my-component> <!--在#app内局部注册的组件在此无法被渲染 --> <child-component></child-component></p><script src="https://cdn.jsdelivr.net/npm/vue"></script><script>Vue.component('my-component', { //全局组件,建议使用短横线分隔式命名组件 template: '<p>A custom component!</p>'})var Child = { template: '<p>A child component!</p>'}var app = new Vue({ el: '#app', components: { //局部组件,仅可在父作用域#app中使用 'child-component':Child } })var example = new Vue({ el:'#example'})</script>
注:
a.