Is it possible to generate dynamic components from a JSON were they use v-bind attributes? For instance this component: <my-test-component :value="_.get(values, 'current', 0)" /> JSON: [{":value": "_.get(value, 'current', 0)"}] For "static" attribute...
Hi everyone, I am working on a php site where I want to pass a php string variable to be used in a .vue component. Can someone help me wit this? here is what i have in code: index.php <?php $foo = 72; ?> <div id='app'></div> app.js import App from...
This is specifically now for vue, but I found the same problems with React and I think this is more related to component based apps vs the specific framework. I like to build my app from small components. It makes it more easy to reason about, easier...