[Vuejs]-How to use props and print in Vue JS?

1👍

Maybe you got the problem here. I think you don’t need to wrap the value to brackets. You can still access the props but Vue.JS will read it as an object. I am not an expert but I also tried Vue.JS recently.

<template>
    <div>
        <Title :title="title" :styling="styling" />
    </div>
</template>

Leave a comment