forked from OXOYO/X-Flowchart-Vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
11,817 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<style> | ||
#app { | ||
font-family: 'Avenir', Helvetica, Arial, sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
text-align: center; | ||
color: #2c3e50; | ||
margin-top: 60px; | ||
} | ||
</style> | ||
|
||
<template> | ||
<div id="app"> | ||
<a href="https://github.com/OXOYO/X-Flowchart-Vue" target="_blank"> | ||
<img | ||
style="position: absolute; top: 0; right: 0; border: 0; z-index: 5000" | ||
src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" | ||
alt="Fork me on GitHub" | ||
> | ||
</a> | ||
<img src="./assets/logo.png"> | ||
<!--<HelloWorld/>--> | ||
<XFlowchart></XFlowchart> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import HelloWorld from './components/HelloWorld' | ||
export default { | ||
name: 'App', | ||
components: { | ||
HelloWorld | ||
} | ||
} | ||
</script> |
File renamed without changes
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import Vue from 'vue' | ||
import App from './App' | ||
|
||
// 导入XFormEditor | ||
import XFlowchart from '../src/index' | ||
Vue.use(XFlowchart) | ||
|
||
// Vue 全局配置 | ||
let isDev = process && process.env.NODE_ENV !== 'production' | ||
Vue.config.debug = isDev | ||
Vue.config.devtools = isDev | ||
Vue.config.productionTip = isDev | ||
|
||
/* eslint-disable no-new */ | ||
// 启动应用 | ||
new Vue({ | ||
render: h => h(App) | ||
}).$mount('#app') |
Oops, something went wrong.