mirror of
https://github.com/doocs/md.git
synced 2024-11-25 11:31:30 +08:00
19 lines
280 B
Vue
19 lines
280 B
Vue
|
<template>
|
||
|
<div class="loading" id="loading">
|
||
|
<div class="loading-wrapper">
|
||
|
<div class="loading-text">Loading...</div>
|
||
|
<div class="loading-anim"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|