mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-02-13 08:03:22 +01:00
8 lines
175 B
Vue
8 lines
175 B
Vue
|
<template>
|
||
|
<select v-model="selected">
|
||
|
<option v-for="style in availableStyles" >{{style}}</option>
|
||
|
</select>
|
||
|
</template>
|
||
|
|
||
|
<script src="./style_switcher.js"></script>
|