mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
25 lines
486 B
Vue
25 lines
486 B
Vue
<template>
|
|
<div class="article">
|
|
<h1>Install 安装</h1>
|
|
<h2>NPM安装</h2>
|
|
<markdown></markdown>
|
|
</div>
|
|
</template>
|
|
<script type="text/ecmascript-6">
|
|
import markdown from './md/install.md'
|
|
export default {
|
|
components: {
|
|
markdown,
|
|
},
|
|
data: function () {
|
|
return {
|
|
markdown
|
|
}
|
|
},
|
|
ready: function () {
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|