Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. Чекбокс
  2. <div class="switcher">
  3. <check @click.native="product.type = 1" :checked="product.type === 1"
  4. class="switcher__icon"></check>
  5. <span @click="product.type = 1"
  6. class="switcher__label">{{$root.translateWords('Simple product')}}</span>
  7. <icon icon="icon" class="icon switcher__help"></icon>
  8. </div>
  9. Вибрати файл
  10. <icon v-if="canUploadFile" class="icon" icon="add-file"></icon>
  11. Селект
  12. <v-select
  13. :disabled="queue !== null"
  14. :clearable="true"
  15. :searchable="true"
  16. :options="configurations"
  17. v-model="manual_configuration"
  18. :reduce="configuration => configuration.id"
  19. class="input input--inForm"
  20. label="name">
  21. <div slot="no-options">{{$root.translateWords('Data not found')}}</div>
  22. </v-select>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement