akkoma-fe/src/components/style_switcher/style_switcher.vue

14 lines
272 B
Vue
Raw Normal View History

2017-01-16 17:57:03 +00:00
<template>
2017-01-17 13:41:13 +00:00
<select v-model="selected" class="style-switcher">
2017-01-16 17:57:03 +00:00
<option v-for="style in availableStyles" >{{style}}</option>
</select>
</template>
<script src="./style_switcher.js"></script>
2017-01-17 13:41:13 +00:00
<style lang="scss">
.style-switcher {
margin-right: 1em;
}
</style>