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