forked from opentiny/tiny-vue
24 lines
351 B
Vue
24 lines
351 B
Vue
<template>
|
|
<div id="demo-loading"></div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Loading } from '@opentiny/vue'
|
|
|
|
export default {
|
|
mounted() {
|
|
Loading.service({
|
|
text: '加载中...',
|
|
tiny_mode: 'mobile',
|
|
target: document.getElementById('demo-loading')
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
#demo-loading {
|
|
height: 120px;
|
|
}
|
|
</style>
|