Create documentation for your projects. Like so:
Most popular keyboard shortcuts within GistBox
- Up/Down - Previous/Next Gist
- Ctrl+e - Edit a selected Gist
- Ctrl+s - Save Gist
/** | |
* All of these can be overrided in each page component via define method https://nuxtjs.org/api/pages-head/ | |
* E.g.: head() { return { title: "", meta: [] } } | |
*/ | |
export default { | |
titleTemplate: "%s - " + _WhiteLabel.brandname, | |
title: "Shop", | |
meta: [ | |
{ "http-equiv": "utf-8" }, | |
{ charset: "X-UA-Compatible", content: "IE=edge" }, |
const axios = require('axios') | |
/** | |
* Download url to a file on disk | |
* @param url | |
* @param destFile | |
*/ | |
async function downloadAxios(url: string, destFile: string) { | |
const response = await axios({ | |
method: 'GET', |
<test> | |
<entry> | |
<id>1</id> | |
<value>test</value> | |
</entry> | |
</test> |
Create documentation for your projects. Like so: