aboutsummaryrefslogtreecommitdiff
path: root/src/components/style_switcher/style_switcher.vue
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-01-17 20:55:53 +0100
committerRoger Braun <roger@rogerbraun.net>2017-01-17 20:55:53 +0100
commitc6f266302f4c75ff99e6dcda83019d1c3eaf73af (patch)
tree203c4fb82acbcc202560644df9126789a9668eab /src/components/style_switcher/style_switcher.vue
parent198eee82bedddf6028cf3fe731a45503039ec24d (diff)
parentc7a375068d3337144dde85fabf4b4d5a874d70a0 (diff)
Merge branch 'develop' into feature/hash-routed
Diffstat (limited to 'src/components/style_switcher/style_switcher.vue')
-rw-r--r--src/components/style_switcher/style_switcher.vue13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/style_switcher/style_switcher.vue b/src/components/style_switcher/style_switcher.vue
new file mode 100644
index 00000000..bfd8cf86
--- /dev/null
+++ b/src/components/style_switcher/style_switcher.vue
@@ -0,0 +1,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>