すいませんすごい初歩的なことなのですが、親から子へのテキストの情報の受け渡しがうまくいきません。。
親 Parent
<template> <div> <title text="テスト" /> </div> </template> <script lang="ts"> import { Context } from '@nuxt/types' import { Component,Prop, Vue } from 'vue-property-decorator' import Title from '~/components/atoms/title.vue' @Component({ components: { Title } }) export default class Parent extends Vue {} </script> <style scoped> </style>
子 Child
<template> <div class="tit_wrap"> <p class="tit">{{ text }}</p> </div> </template> <script lang="ts"> import { Vue, Component } from 'vue-property-decorator' @Component({ }) export default class Child extends Vue { props: ['text'] } </script> <style scoped> </style>
現在このような状態で子の受け渡しをしなければ特に何も問題なく
描画がされるのですが、これではなぜ表示されないのでしょうか??
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/12 06:44
2020/02/14 02:11
2020/02/14 06:07
2020/02/14 06:43