aboutsummaryrefslogtreecommitdiff
path: root/src/components/style_switcher/style_switcher.vue
blob: bfd8cf8648f52154521c7e0fa23f25aa0208ac29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<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>