|
|
|
|
|
by kabes
3490 days ago
|
|
Well, they're not that far apart (vue 2 and angular 2).
They're both component based frameworks with a very comparable templating system. So you'll be able to create the same things in more or less the same manner with both frameworks. The main difference is that angular 2 is a bit more enterprisey.
It's a bit more bloated (but also more complete) and if you're a small team with a not too large app, you may find it introduces too much overhead. If you're a larger team with a larger app you'll really benefit from angular 2. One thing that speaks for angular 2 has is their ngUpgrade module, which allows you to gradually upgrade your angular 1 app, which you may find useful. There's a (somewhat biased IMO) comparison by vue itself here: https://vuejs.org/v2/guide/comparison.html#Angular-2 |
|