/
githubmirror
/
Motrix
Обзор
Документация
Войти
/
githubmirror
/
Motrix
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/renderer/components/About/Copyright.vue
56 строк
1 KB
Dr_rOot
fix: update deps 20230324 (#1404)
27 мар 2023, 16:19
Не верифицирован
27 мар 2023, 16:19
a8846ea
Код
Авторство
О чём код?
<template> <el-row class="copyright"> <el-col :span="6" class="copyright-left"> <a target="_blank" rel="noopener noreferrer" href="https://motrix.app/"> ©{{ year }} Motrix </a> </el-col> <el-col :span="18" class="copyright-right"> <a target="_blank" rel="noopener noreferrer" href="https://motrix.app/license"> {{ $t('about.license') }} </a> <a target="_blank" rel="noopener noreferrer" href="https://motrix.app/about"> {{ $t('about.about') }} </a> <a target="_blank" rel="noopener noreferrer" href="https://motrix.app/support"> {{ $t('about.support') }} </a> <a target="_blank" rel="noopener noreferrer" href="https://motrix.app/release"> {{ $t('about.release') }} </a> </el-col> </el-row> </template> <script> export default { name: 'mo-copyright', data () { const year = new Date().getFullYear() return { year } } } </script> <style lang="scss"> .copyright { width: 100%; font-size: $--font-size-small; a { color: $--app-copyright-color; text-decoration: none; } } .copyright-left { text-align: left; } .copyright-right { text-align: right; a { margin-left: 30px; } } </style>