WIP - export functionality
This commit is contained in:
parent
3f12f776a5
commit
924980e752
|
|
@ -85,6 +85,12 @@ var app = new Vue({
|
||||||
// username: "",
|
// username: "",
|
||||||
// searchString: "",
|
// searchString: "",
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The complete JSON document
|
||||||
|
*/
|
||||||
|
jsonDocument: "",
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Details of the current page/route.
|
* Details of the current page/route.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -487,7 +487,13 @@
|
||||||
|
|
||||||
<template type="text/x-template" id="export-template" lang="html">
|
<template type="text/x-template" id="export-template" lang="html">
|
||||||
<div id="export-root">
|
<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>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue