This commit is contained in:
2020-02-05 23:06:27 +00:00
parent 93246e4251
commit fa56b99f6f
5 changed files with 41 additions and 6 deletions

View File

@@ -16,7 +16,9 @@
</template>
<v-time-picker scrollable ampm-in-title v-model="timeOnly">
<v-spacer></v-spacer>
<v-btn text color="primary" @click="dlgtime = false">OK</v-btn>
<v-btn text color="primary" @click="dlgtime = false">{{
lt("OK")
}}</v-btn>
</v-time-picker>
</v-dialog>
</v-col>
@@ -61,6 +63,11 @@ export default {
required: false
}
},
methods: {
lt(ltKey) {
return window.$gz.locale.get(ltKey);
}
},
watch: {
date() {
//this tortuous fuckery is required so that the input and change events only fire on a real change, not initial page load