[READ-ONLY] Mirror of https://github.com/danielroe/n3rdle. n3rdle.vercel.app
0

Configure Feed

Select the types of activity you want to include in your feed.

n3rdle / components / GuessError.vue
250 B 14 lines
1<script setup lang="ts"> 2defineProps({ 3 error: { type: String, required: true }, 4}) 5</script> 6 7<template> 8 <div 9 :class="{ 'bg-red-500': !!error }" 10 class="px-2 py-1 my-2 text-white font-bold min-h-8" 11 > 12 {{ error }} 13 </div> 14</template>