📝 add creating project

This commit is contained in:
yanyongyu
2020-09-17 13:12:48 +08:00
parent 44722a11d3
commit e124b08e49
8 changed files with 826 additions and 226 deletions

View File

@ -20,6 +20,14 @@ module.exports = context => ({
[
"meta",
{ name: "apple-mobile-web-app-status-bar-style", content: "black" }
],
[
"link",
{
rel: "stylesheet",
href:
"https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css"
}
]
],
locales: {
@ -59,7 +67,12 @@ module.exports = context => ({
path: "",
collapsable: false,
sidebar: "auto",
children: ["", "installation", "getting-started"]
children: [
"",
"installation",
"getting-started",
"creating-a-project"
]
}
],
"/api/": [
@ -124,6 +137,14 @@ module.exports = context => ({
console.log(`Created version ${version} in ${versionDestPath}`);
}
}
],
[
"container",
{
type: "vue",
before: '<pre class="vue-container"><code>',
after: "</code></pre>"
}
]
]
});