picker_template = html`
<script type="text/x-template" id="picker-template">
<div>
<template>
<div v-for="attribute in Object.keys(attributes)">
<div v-if="attributes[attribute].min !== undefined">
<label>{{ attributes[attribute].label }}</label>
<input type="range" v-model="attributes[attribute].value" :min="attributes[attribute].min" :max="attributes[attribute].max" :step="attributes[attribute].step">{{ attributes[attribute].value }}
</div>
</div>
</template>
</div>
</script>`