53 lines
1.0 KiB
Vue
Executable File
53 lines
1.0 KiB
Vue
Executable File
<template>
|
|
<div v-if="!!myrec">
|
|
{{label}}
|
|
<q-select
|
|
rounded
|
|
style="min-width: 150px"
|
|
outlined
|
|
v-model="myrec.name"
|
|
:options="tools.SelectListAnimation"
|
|
@update:model-value="updateClass"
|
|
dense
|
|
label="Tipo:"
|
|
emit-value
|
|
map-options
|
|
>
|
|
</q-select>
|
|
|
|
<q-select
|
|
rounded
|
|
style="min-width: 150px"
|
|
outlined
|
|
v-model="myrec.clduration"
|
|
:options="tools.SelectListSpeed"
|
|
@update:model-value="updateClass"
|
|
dense
|
|
label="Speed:"
|
|
emit-value
|
|
map-options
|
|
>
|
|
</q-select>
|
|
|
|
<q-select
|
|
rounded
|
|
style="min-width: 150px"
|
|
outlined
|
|
v-model="myrec.cldelay"
|
|
:options="tools.SelectListDelay"
|
|
@update:model-value="updateClass"
|
|
dense
|
|
label="Ritardo:"
|
|
emit-value
|
|
map-options
|
|
>
|
|
</q-select>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" src="./CSelectAnimation.ts">
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import './CSelectAnimation.scss';
|
|
</style>
|