WIP - export functionality
This commit is contained in:
parent
3f12f776a5
commit
924980e752
|
|
@ -84,6 +84,12 @@ var app = new Vue({
|
|||
// sidebarHeight: "",
|
||||
// username: "",
|
||||
// searchString: "",
|
||||
|
||||
|
||||
/**
|
||||
* The complete JSON document
|
||||
*/
|
||||
jsonDocument: "",
|
||||
|
||||
/**
|
||||
* Details of the current page/route.
|
||||
|
|
|
|||
|
|
@ -487,7 +487,13 @@
|
|||
|
||||
<template type="text/x-template" id="export-template" lang="html">
|
||||
<div id="export-root">
|
||||
Export
|
||||
<p>
|
||||
Copy the following text in a text file and save it with the exctension ".json" (.e.g resume.json).
|
||||
</p>
|
||||
<div>
|
||||
{{$parent.jsonDocument}}
|
||||
</div>
|
||||
<textarea rows="20" class="w3-input w3-border" type="text"></textarea>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue