I am sorry if this sounds too ignorant, are frameworks like Vue.js (I actually read the guide and understood some wonderful things about its philosophy since I am actually developing backend mainly) or React, etc.. reasonable to use in websites in general (instead of jquery or taking some tasks from it) or they actually only reasonable for mobile web applications and SPAs? What about the SEO and search engine renderi…
In vue.js, SEO is taken care of with with server side rendering[1]. This assumes that you are using node.js as your backend though. [1] https://vuejs.org/v2/guide/ssr.html#SEO
Vue.js 2.1 Released
91–100 of 126 posts
Re: Vue.js 2.1 Released
#92Re: Vue.js 2.1 Released
#93I don´t know why Riot.js (another js framework) don't attract more people. I used it and it´s awesome. Today they launched the 3.0.0 version http://riotjs.com/release-notes/ . Here is a quick introduction http://vitomd.com/blog/coding/hello-riot-js-quick-tutorial-a... I highly recommend it.
Re: Vue.js 2.1 Released
#94Earlier quoted context omitted.
Thanks. With this coupon "CNETBF2016" it's now just $10 and I bought it at that price!
Guessing that's an affiliate promotion code?
-------
I did a search for coupon codes and I found the exact coupon code from [1].
Can I ask, what would the problem be if the code was affiliated with an affiliate promotion?
The end user pays $10, which I think we can both agree on. It's a "NET" benefit for HN users to learn something new very cheaply.
If couponkoo negotiated with the vendor of the product, so that they can advertise a coupon and get some kick back, you know because they too have to keep the lights on.
Is that such a big deal now on HN? Can you please explain yourself because I don't see an issue here personally!
[1]: http://www.couponkoo.com/coupon/95-off-vue-js-2---the-comple...
Re: Vue.js 2.1 Released
#95For folks who haven't tried Vue yet, I just completed my first project with it and I'm really excited about using it more. Specifically, I used learning Vue as an opportunity to upgrade a simple jQuery-based SPA (with a PHP backend) to ES6, JS modules and Vue. It was a little hairy to bite off all of that stuff at once, but the Vue community was really helpful. In contrast to more monolithic frameworks I didn't have…
I think the docs are very good and more than enough not only just to get started, but also to keep you going.
Re: Vue.js 2.1 Released
#96I really miss 1.0's inline way of writing javascript anywhere inside the dom (attributes) via {{ execute_raw_js_code() }} as well as the ability to run filters on it. Is there anyway to get them back on Vue 2? I have to admit, this was a major step back for me when upgrading to Vue 2 from Vue 1. I also really loved the Vue 1's way of handling transitions. Now having them inside it's own wrapper really diminishes the…
Re: Vue.js 2.1 Released
#97I have created few tutorials on Vue.js.
https://m.youtube.com/playlist?list=PLJ6Y8JfXAV-8_2lHNgP1DhC...
Re: Vue.js 2.1 Released
#98I still wonder why they moved the events from the constructor to the instance... Before 2.0: new Vue({ el: "#el", data: someData, events: { myevent: function(){} } }); after 2.0 : vm.$on('myevent', function () {})
Re: Vue.js 2.1 Released
#99I believe there was a way (probably a complicated hacky way) to achieve this previously too, but I never investigated it too much. Now it's really easy.
Kudos to the Vue team for this release!
Re: Vue.js 2.1 Released
#100I've been a long time React and Angular user, but is still sick to implement correctly enough SSR for my projects. And VueJS just did it elegantly ! I must say, thank all React + Angular folks as the pioneer for better CHANGES. This is THE time for us to change. Really.