v-dialog(v-model='show', persistent, max-width='650', @keydown.esc='hide()')
v-card
v-card-title.headline Add «{{ entry }}» to
v-card-text
v-layout(row, wrap)
template(v-for='i in 5')
v-flex(v-if='i < 4', xs4)
v-checkbox.option.primary--text(
v-model='selected',
:value='options[i - 1].value',
:label='options[i - 1].label'
)
v-flex.checkbox-container(v-else, xs6)
v-checkbox.option.primary--text(
v-model='selected',
:value='options[i - 1].value',
:label='options[i - 1].label'
)
v-card-actions
v-spacer
v-btn.blue--text.darken-1(flat, @click='add()') Add
v-btn.blue--text.darken-1(flat, @click='hide()') Close