Add export feature to the Edit mode - Complete #100

This commit is contained in:
Bubka
2022-12-13 15:57:33 +01:00
parent 2d706e61b7
commit 88195a6afb
9 changed files with 153 additions and 13 deletions

View File

@ -1,4 +1,4 @@
import Vue from 'vue'
import Vue from 'vue'
import { library } from '@fortawesome/fontawesome-svg-core'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
@ -37,7 +37,8 @@ import {
faEye,
faEyeSlash,
faExternalLinkAlt,
faCamera
faCamera,
faFileDownload
} from '@fortawesome/free-solid-svg-icons'
import {
@ -79,7 +80,8 @@ library.add(
faEye,
faEyeSlash,
faExternalLinkAlt,
faCamera
faCamera,
faFileDownload
);
Vue.component('font-awesome-icon', FontAwesomeIcon)