mirror of
https://github.com/doocs/md.git
synced 2024-11-25 03:18:36 +08:00
95b5ce7bb4
* 更新代码样式和待办清单
31 lines
517 B
Vue
31 lines
517 B
Vue
<template>
|
|
<loading v-if="loading" />
|
|
<codemirror-editor v-else />
|
|
</template>
|
|
|
|
<script>
|
|
import Loading from './components/Loading'
|
|
import CodemirrorEditor from './view/CodemirrorEditor'
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Loading,
|
|
CodemirrorEditor
|
|
},
|
|
data() {
|
|
return {
|
|
loading: true
|
|
}
|
|
},
|
|
mounted() {
|
|
setTimeout(() => {
|
|
this.loading = false
|
|
}, 200)
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|