An open API service indexing awesome lists of open source software.

https://github.com/foxy4096/cutefoxes

Get the images of cute, floofy, and fluffy foxes.
https://github.com/foxy4096/cutefoxes

fox

Last synced: 2 months ago
JSON representation

Get the images of cute, floofy, and fluffy foxes.

Awesome Lists containing this project

README

          

# Cute Foxes

Get the images of cute, floofy, and fluffy foxes.

I don't know why I used Vue.js, but still.

I don't get it why Vue.js v3.0.0 is more verbose than Vue.js v2.0.3.

Like see this code

```html

{{ message }}

const { createApp } = Vue;

createApp({
data() {
return {
message: "Hello Vue!",
};
},
}).mount("#app");

```

```html


{{ message }}

var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})

```
As we can see the difference.

v3 is more verbose than v2.

And That is why I don't like Vue.js v3.