Optimizing loading of script files

This commit is contained in:
Alireza Ahmadi
2023-11-19 04:00:41 +01:00
parent 0dbb67d0bb
commit cfc11151d2
8 changed files with 82 additions and 79 deletions

View File

@@ -169,6 +169,18 @@
{{template "component/themeSwitcher" .}}
{{template "component/password" .}}
<script>
class User {
constructor() {
this.username = "";
this.password = "";
}
}
const State = {
Running: "running",
Stop: "stop",
Error: "error",
}
const app = new Vue({
delimiters: ['[[', ']]'],
el: '#app',