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

14 lines
272 B
Vue
Raw Normal View History

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