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.
- Host: GitHub
- URL: https://github.com/foxy4096/cutefoxes
- Owner: foxy4096
- Created: 2022-05-24T05:20:35.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-24T05:20:46.000Z (about 4 years ago)
- Last Synced: 2025-01-26T15:15:01.582Z (over 1 year ago)
- Topics: fox
- Language: CSS
- Homepage: https://cutefoxes.netlify.app
- Size: 45.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.