mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 22:52:32 +01:00
32 lines
550 B
Vue
32 lines
550 B
Vue
<template>
|
|
<main>
|
|
<div class="wrap-content" v-if=" ! loading">
|
|
<span class="nothing-found">Settings coming soon...</span>
|
|
</div>
|
|
|
|
<span class="loader fullsize-loader" v-if="loading"><i></i></span>
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
created() {
|
|
this.fetchUserData();
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
loading: true,
|
|
username: ''
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
fetchUserData() {
|
|
setTimeout(() => {
|
|
this.loading = false;
|
|
}, 800);
|
|
}
|
|
}
|
|
}
|
|
</script> |