mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2025-02-16 11:28:26 +00:00
Merge pull request #114 from WebTools-NG/#79-ET--Export-to-xlsx-as-well
Fix #96
This commit is contained in:
commit
57247609fa
1 changed files with 7 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
|||
<script>
|
||||
const log = require('electron-log');
|
||||
import '@fortawesome/fontawesome-free/css/all.css'
|
||||
import etIcon from '@/assets/ET-256.png';
|
||||
import i18n from '../../i18n'
|
||||
export default {
|
||||
data() {
|
||||
|
@ -27,7 +28,12 @@ import i18n from '../../i18n'
|
|||
{
|
||||
href: { path: '/export' },
|
||||
title: 'Export',
|
||||
icon: 'fas fa-file-export',
|
||||
// icon: 'fas fa-file-export',
|
||||
icon: {
|
||||
//adjust element
|
||||
element: 'img',
|
||||
attributes: { src: etIcon },
|
||||
},
|
||||
child: [
|
||||
{
|
||||
href: '/export/settings',
|
||||
|
|
Loading…
Add table
Reference in a new issue