aboutsummaryrefslogtreecommitdiff
path: root/src/components/style_switcher/style_switcher.vue
blob: 8c32ed076fe18f894be0527e269b2348be77a11d (plain)
1
2
3
4
5
6
7
<template>
  <select v-model="selected">
    <option v-for="style in availableStyles" >{{style}}</option>
  </select>
</template>

<script src="./style_switcher.js"></script>