You’ve heard, most likely, about elephants of modern web front-end development like Angular or React… May be read some articles about it, but jQuery looks so familiar, why bother?
You are right, you shouldn’t. Just try Vue.
I love simple things. Here is real example of working Vue application.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<script src="https://unpkg.com/vue"></script> <div id="app"> {{ greeting }} </div> <script> new Vue({ el: '#app', data: { greeting: 'Welcome to your Vue.js app!', } }) </script> |
More to come, stay tuned