This commit is contained in:
2024-02-29 01:04:07 +04:00
parent e358a96e76
commit c6979addd0
28 changed files with 2897 additions and 180 deletions

View File

@@ -0,0 +1,41 @@
// Автор: ELForcer
// Дата оптимизации: 21.04.2023
const RootComponent = {
data() {
return {
//Цвета
M_Red: false,
M_Green: false,
M_Blue: false,
M_Yellow: false,
//Модальные переменные
ModalTitleThread: "",
ModalTitle2: "Запуск",
ModalBodyText2: "Пожалуйста, подождите...",
ModalBodyThread: "",
ThreadMessage: "",
ThreadVars: {
message: '',
HTML: "",
Started: false,
},
}; //return
}, //data
//===========================================================================
methods: {
//-------------------------------------------------------------------------
}, // END metods
//===========================================================================
mounted() {
ThreadVars = this.ThreadVars;
}, // mounted()
}; // Vue
//Монтируем Vue как vueapp начиная с тега #vueapp
vueapp = Vue.createApp(RootComponent).mount("#vueapp");