Skip to the content.

Some Vue 3 Tricks to Know

<script setup lang="ts">

import { onMounted, ref, computed } from 'vue';
import { date } from 'quasar';

const selectedDate = ref<string | null>(null);

const todaysDate = computed<string>(() => {
  return date.formatDate(Date.now(), 'YYYY/MM/DD');
});

selectedDate.value = todaysDate.value;
</script>