Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jan 1, 2021. It is now read-only.

Commit 836d13b

Browse files
author
krthr
committed
docs
1 parent 6797886 commit 836d13b

File tree

4 files changed

+42
-4
lines changed

4 files changed

+42
-4
lines changed

‎docs/.vuepress/config.js‎

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
title: "Hello VuePress",
3+
description: "Just playing around",
4+
5+
themeConfig: {
6+
nav: [
7+
{ text: "Home", link: "/" },
8+
{ text: "Guide", link: "/guide/" },
9+
{ text: "External", link: "https://google.com" }
10+
],
11+
12+
repo: "",
13+
14+
sidebar: "auto",
15+
16+
serviceWorker: {
17+
updatePopup: true
18+
}
19+
}
20+
};

‎docs/README.md‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
home: true
3+
heroImage: /hero.png
4+
actionText: Get Started →
5+
actionLink: /guide/
6+
features:
7+
- title: Simplicity First
8+
details: Minimal setup with markdown-centered project structure helps you focus on writing.
9+
- title: Vue-Powered
10+
details: Enjoy the dev experience of Vue + webpack, use Vue components in markdown, and develop custom themes with Vue.
11+
- title: Performant
12+
details: VuePress generates pre-rendered static HTML for each page, and runs as an SPA once a page is loaded.
13+
footer: MIT Licensed | Copyright © 2018-present Evan You
14+
---
15+
16+
# Hello VuePress

‎package.json‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"serve": "vue-cli-service serve",
99
"build": "vue-cli-service build",
1010
"lint": "vue-cli-service lint",
11-
"build-bundle": "vue-cli-service build --target lib --name vue-dataflow-editor ./src/components/index.js"
11+
"build-bundle": "vue-cli-service build --target lib --name vue-dataflow-editor ./src/components/index.js",
12+
"docs:dev": "vuepress dev docs",
13+
"docs:build": "vuepress build docs"
1214
},
1315
"files": [
1416
"dist/*",

‎test.html‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
<meta http-equiv="X-UA-Compatible" content="ie=edge">
88
<title>Document</title>
99

10-
<link rel="stylesheet" href="https://unpkg.com/@krthr/vue-dataflow-editor@1.2.4/dist/vue-dataflow-editor.css">
10+
<link rel="stylesheet" href="https://unpkg.com/@krthr/vue-dataflow-editor@1.2.5/dist/vue-dataflow-editor.css">
1111
</head>
1212

1313
<body>
1414

1515
<div id="app">
16-
<vue-blocks-container ref="container" :blocksContent="blocks" :scene.sync="scene" class="container" />
16+
<vue-blocks-container ref="container" :blocks-content="blocks" :scene.sync="scene" class="container" />
1717
</div>
1818
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">
1919
</script>
20-
<script src="https://unpkg.com/@krthr/vue-dataflow-editor@1.2.4/dist/vue-dataflow-editor.umd.js"></script>
20+
<script src="https://unpkg.com/@krthr/vue-dataflow-editor@1.2.5/dist/vue-dataflow-editor.umd.js"></script>
2121
<script>
2222
const app = new Vue({
2323
data: function () {

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /