Imam Nur
Imam Nur
Ketika mengambil data `https://api-mobilespecs.azharimm.site/v2/top-by-fans` response title adalah `Top By Daily Interest`
```vue Hello Vue.js p { font-size:20px; color:red; text-align: center; line-height: 50px; } /* Make it work */ :global(body) { width: 100vw; height: 100vh; background-color: burlywood; } ```
```vue import { ref } from "vue" const theme = ref("red") const colors = ["blue", "yellow", "red", "green"] setInterval(() => { theme.value = colors[Math.floor(Math.random() * 4)] }, 1000) hello /*...
```vue import { ref } from "vue" const count = ref(0) setInterval(() => { count.value++ }, 1000) Make it never change: {{ count }} ```
```vue import { ref } from "vue" const msg = ref("Hello World") {{msg}} ```