AzuraCast/frontend/vue/components/Common/IsMounted.vue

14 lines
190 B
Vue

<script>
export default {
name: 'IsMounted',
data() {
return {
isMounted: false
}
},
mounted() {
this.isMounted = true;
}
}
</script>