Reputation: 789
Im building an application using vue js framework I need to know do I go for es6 in vue framework .Is it good enough to go with es6 as its in es5 I need to know that it must go for [ vue +vuex+ es6 ]. Are there links or sample examples where i can learn vue in es6 as vue.org provide es5 features only Else must be preferred let me now as m newbie i have no much idea Please lemme know ur guidance is much appreciated.
Thanks in Advance
Upvotes: 1
Views: 505
Reputation: 2138
If you want to build an application with vue.js, es6 is good, but you'll need babel and webpack.
I do all my development with es6, sometimes you will need some polyfills for some so older browsers.
If your're a real newbie, I'll recommend to start with the cli of vue.js or even a nuxt.js, which is a very nice vue framework to get you started. They all have babel and webpack preconfigured for you.
Have fun!
Upvotes: 2