下のコードで、コンポーネントのテンプレートの中の{{ name }} も表示されるようにしたいのですが、表示されません。
表示する方法はありますか?
<script src="https://unpkg.com/vue@next"></script> <div id="test"> {{ name }}<br> <component1></component1><br> <component2></component2><br> </div> <script> const test = { data() { return { name: 'Taro' } } } const app = Vue.createApp(test) app.component('component1', { template: ` {{ name }} - component1です` }) app.component('component2', { template: ` {{ name }} - component2です` }) app.mount('#test') </script>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/14 20:45