tiny-vue/examples/docs/resources/pc/demo/loading/loading-tip-text.vue

23 lines
314 B
Vue

<template>
<div id="boxone"></div>
</template>
<script lang="jsx">
import { Loading } from '@opentiny/vue'
export default {
mounted() {
Loading.service({
text: '加载中',
target: document.getElementById('boxone')
})
}
}
</script>
<style scoped>
#boxone {
height: 120px;
}
</style>