项目初始化

This commit is contained in:
myh
2023-06-15 21:21:48 +08:00
parent 3cb521110a
commit faa451b7c6
22 changed files with 3174 additions and 0 deletions

14
UI/src/main.ts Normal file
View File

@@ -0,0 +1,14 @@
import "../scss/app.scss"
import "../scss/index.scss"
import "../scss/business.scss"
export class AppComponent
{
say()
{
console.log('hello');
}
}
let app = new AppComponent();
app.say();