mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2025-02-25 06:33:05 +01:00
13 lines
272 B
Vue
13 lines
272 B
Vue
<template>
|
|
<select v-model="selected" class="style-switcher">
|
|
<option v-for="style in availableStyles" >{{style}}</option>
|
|
</select>
|
|
</template>
|
|
|
|
<script src="./style_switcher.js"></script>
|
|
|
|
<style lang="scss">
|
|
.style-switcher {
|
|
margin-right: 1em;
|
|
}
|
|
</style>
|