1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<template> <h1>Wördle</h1> <Keyboard /> </template> <script setup lang="ts"> import Keyboard from "@/components/Keyboard.vue"; let props = defineProps<{ riddle: string; trial: string; }>(); </script> <style scoped> </style>