Это ссылается на следующую строку кода из PrimeVue. Компонент подсказки.
https://github.com/primefaces/primevue/ ... tip.js#L25
Есть идеи, чего мне здесь не хватает?
Код: Выделить всё
{{ timestamp }}
{{ local_timestamp }}
import { computed, defineProps } from 'vue'
const props = defineProps({
timestamp: {
type: String,
required: true
}
})
const local_timestamp = computed(() => {
return new Date(props.timestamp)
})
Подробнее здесь: https://stackoverflow.com/questions/793 ... ding-error
Мобильная версия