JSFiddle - React, Tailwind, and code Playground
HTML
<div id="app">
<test text_c="text_D"></test>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
JavaScript
new Vue({
el: "#app",
data: {
text_D: "hello",
},
components: {
test: {
props: ["text_c"],
template: "<div>{{text_c}}</div>"
}
}
});