/
wax_boy
/
semaphore_custom
Обзор
Документация
Войти
/
wax_boy
/
semaphore_custom
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
web/src/components/TaskLogViewRecord.vue
24 строки
517 B
Denis Gukov
feat(ui): use virtial list for task output
05 янв 2025, 22:33
Не верифицирован
05 янв 2025, 22:33
5ff45d7
Код
Авторство
О чём код?
<template> <div class="task-log-records__record"> <div class="task-log-records__time"> {{ source.time | formatTime }} </div> <div class="task-log-records__output" v-html="$options.filters.formatLog(source.output)"> </div> </div> </template> <script> export default { props: { index: { // index of current item type: Number, }, source: { // here is: {uid: 'unique_1', text: 'abc'} type: Object, default() { return {}; }, }, }, }; </script>