We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e3a9a01 + e10aa08 commit 86505f1Copy full SHA for 86505f1
src/components/ExportProject.vue
@@ -1,5 +1,5 @@
1
<template>
2
- <q-btn class="glossy" color="teal" label="Export Project" />
+ <q-btn class="glossy" color="teal" label="Export Project" @click="exportProject"/>
3
</template>
4
5
<script>
@@ -13,6 +13,7 @@ export default {
13
name: "ExportProjectComponent",
14
methods: {
15
exportProject: function() {
16
+ console.log('export project method clicked!')
17
ipc.send("show-export-dialog");
18
},
19
/**
0 commit comments