Files
MainSite/app/pages/rustdesk/script.js
2024-02-29 01:04:07 +04:00

42 lines
1.0 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Автор: 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");