VueJs: Using component inside another component
问题 I'm trying to make use of the main component inside another with pre-defined properties. Here's what I'm trying to achieve, but I'm just getting an empty div as a result. <template> <call-dialog-link :id="id" :url=url" message="Are you sure you wish to remove this record?" label="Remove" css-classes="alert" ></call-dialog-link> </template> <script> import CallDialogLink from './CallDialogLink.vue'; export default { props: { id: { type: String, required: true }, url: { type: String, required: