vectorized rung builder

This commit is contained in:
Tim
2024-04-30 17:09:48 -04:00
parent 0ad31dfa08
commit 44fbbb7695
3 changed files with 22 additions and 23 deletions

View File

@@ -23,7 +23,7 @@ const emit = defineEmits(['update:modelValue'])
const hideDetails = true
const now = computed(()=>DateTime.fromSeconds(props.modelValue).setZone(s.timeZone))
const now = computed(()=>{console.log('ate now',props.modelValue); return DateTime.fromSeconds(props.modelValue).setZone(s.timeZone)})
const year = computed({
get() { return now.value.year },