Unstyled demo fixes

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-02 17:03:56 +03:00
parent 5d8c790836
commit ef45334c22
24 changed files with 97 additions and 79 deletions

View file

@ -32,7 +32,7 @@ export default {
export default {
data() {
return {
value: 'off',
value: 'Off',
options: ['Off', 'On']
}
}
@ -48,7 +48,7 @@ export default {
<script setup>
import { ref } from 'vue';
const value = ref('off');
const value = ref('Off');
const options = ref(['Off', 'On']);
<\/script>`
}