mirror of
https://github.com/doocs/md.git
synced 2025-01-23 04:14:42 +08:00
42 lines
732 B
Vue
42 lines
732 B
Vue
<template>
|
|
<transition name="fade" v-if="loading">
|
|
<loading />
|
|
</transition>
|
|
<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
|
|
}, 100);
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.fade-enter, .fade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
.fade-enter-to, .fade-leave {
|
|
opacity: 1;
|
|
}
|
|
.fade-enter-active, .fade-leave-active {
|
|
transition: all 1s;
|
|
}
|
|
</style>
|