43d98a1f82
- robots.txt avoid search bots - adapt Dataset.ts and LocationsMap.ts for edit form - edit createForm for new dataset attributes - vue-countdown.vue 1800 seconds
18 lines
358 B
Vue
18 lines
358 B
Vue
<template>
|
|
<div v-show="warningSeconds <= 1800" class="vue-countdown">
|
|
<div class="vue-countdown--time">
|
|
remaining time: {{ time }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import VueCountdown from "./VueCountdown";
|
|
export default VueCountdown;
|
|
</script>
|
|
|
|
<style scoped>
|
|
.vue-countdown--time {
|
|
color:red;
|
|
}
|
|
</style> |