docs(chip): update

This commit is contained in:
Benjamin Canac
2024-07-30 16:45:53 +02:00
parent 2c6295d479
commit a90935b6aa
2 changed files with 6 additions and 5 deletions

View File

@@ -1,19 +1,20 @@
<script setup lang="ts">
const statuses = ['online', 'offline', 'busy', 'away']
const statuses = ['online', 'away', 'busy', 'offline']
const status = ref(statuses[0])
const color = computed(() => ({
online: 'green',
offline: 'gray',
away: 'amber',
busy: 'red',
away: 'amber'
offline: 'gray'
})[status.value] as any)
const show = computed(() => status.value !== 'offline')
// Note: This is for demonstration purposes only. Don't do this at home.
onMounted(() => {
setInterval(() => {
status.value = statuses[Math.floor(Math.random() * statuses.length)]
status.value = statuses[(statuses.indexOf(status.value) + 1) % statuses.length]
}, 1000)
})
</script>