- added axios library to plugins - added vue library to plugins - added tt-frontend-framework for vue with basic documentation - added git_merge_ts to additionalCSS - added git_merge_ts to additionalJS - added property JSGlobals - refactored RaspberryDisplay Module
15 lines
429 B
JavaScript
15 lines
429 B
JavaScript
Vue.component('tt-loader', {
|
|
template: `
|
|
<transition name="fade">
|
|
<div class="w-100 h-100" style="position: absolute;">
|
|
<div class="overlay" id="loading">
|
|
<div class="d-flex justify-content-center">
|
|
<div class="spinner-border" role="status">
|
|
<span class="sr-only">Loading...</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
`
|
|
}); |