Placeholders for ImportExport
This commit is contained in:
parent
86b2ad9a72
commit
640cadac63
1 changed files with 35 additions and 5 deletions
|
@ -3,12 +3,34 @@
|
||||||
<div slot="header" class="toolbar">
|
<div slot="header" class="toolbar">
|
||||||
<q-toolbar-title :padding="0">
|
<q-toolbar-title :padding="0">
|
||||||
My Spells v2.0
|
My Spells v2.0
|
||||||
|
|
||||||
<q-search
|
|
||||||
class="primary"
|
|
||||||
v-model="search"
|
|
||||||
></q-search>
|
|
||||||
</q-toolbar-title>
|
</q-toolbar-title>
|
||||||
|
|
||||||
|
<button v-on:click="copy">
|
||||||
|
<i>file_download</i>
|
||||||
|
<q-tooltip
|
||||||
|
anchor="bottom right"
|
||||||
|
self="top right"
|
||||||
|
>
|
||||||
|
Export Chosen Spells
|
||||||
|
</q-tooltip>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button v-on:click="paste">
|
||||||
|
<i>cloud_upload</i>
|
||||||
|
<q-tooltip
|
||||||
|
anchor="bottom right"
|
||||||
|
self="top right"
|
||||||
|
>
|
||||||
|
Import Chosen Spells
|
||||||
|
</q-tooltip>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div slot="header" class="toolbar primary">
|
||||||
|
<q-search
|
||||||
|
class="primary"
|
||||||
|
v-model="search"
|
||||||
|
></q-search>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="layout-view">
|
<div class="layout-view">
|
||||||
|
@ -66,6 +88,14 @@ export default {
|
||||||
.catch(fetchFailure)
|
.catch(fetchFailure)
|
||||||
.then(() => { Loading.hide() })
|
.then(() => { Loading.hide() })
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
copy () {
|
||||||
|
console.log('Copy Chosen!', this.state.chosen)
|
||||||
|
},
|
||||||
|
paste () {
|
||||||
|
console.log('Load Chosen!')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue