mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-23 09:50:54 +08:00
22 lines
433 B
Vue
22 lines
433 B
Vue
<template>
|
|
<div class="article">
|
|
<markdown></markdown>
|
|
</div>
|
|
</template>
|
|
<script type="text/ecmascript-6">
|
|
import markdown from './md/components.md'
|
|
export default {
|
|
components: {
|
|
markdown
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
code{
|
|
background: rgb(247, 247, 247);;
|
|
border: 1px solid rgb(238, 238, 238);
|
|
padding: 0 3px;
|
|
margin: 0 2px;
|
|
border-radius: 4px;
|
|
}
|
|
</style> |