tiny-vue/examples/sites/demos/mobile-first/app/loading/basic-usage.vue

33 lines
610 B
Vue

<template>
<div>
<tiny-button @click="closeLoading">close Loading</tiny-button>
<div id="tiny-loading1" style="width: 100%; height: 120px"></div>
</div>
</template>
<script>
import { Loading, Button } from '@opentiny/vue'
export default {
components: {
TinyButton: Button
},
data() {
return {
loadingInstance: null
}
},
mounted() {
this.loadingInstance = Loading.service({
target: document.getElementById('tiny-loading1'),
tiny_mode: 'mobile-first'
})
},
methods: {
closeLoading() {
this.loadingInstance.close()
}
}
}
</script>