mirror of
https://github.com/woodchen-ink/md-wechat.git
synced 2025-07-18 13:42:02 +08:00
47 lines
654 B
Vue
47 lines
654 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 './CodemirrorEditor'
|
|
|
|
export default {
|
|
name: `App`,
|
|
components: {
|
|
Loading,
|
|
CodemirrorEditor,
|
|
},
|
|
data() {
|
|
return {
|
|
loading: true,
|
|
}
|
|
},
|
|
mounted() {
|
|
setTimeout(() => {
|
|
this.loading = false
|
|
}, 100)
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style 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>
|