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