Verifying simple script messaging.

This commit is contained in:
Ryan Breen
2023-01-23 23:21:17 -05:00
parent 25da1d0cab
commit 03af8e71ad
3 changed files with 21 additions and 2 deletions

View File

@@ -11,7 +11,13 @@
<body x-data="options" class="text-fuchsia-900 bg-fuchsia-400">
<h1 class="text-6xl font-bold">Settings</h1>
<p x-text="msg"></p>
<select x-model.number="profileIndex" name="profiles" id="profiles">
<template x-for="(profileName, index) in profileNames" :key="profileName">
<option x-text="profileName" :value="index"></option>
</template>
</select>
</body>
</html>