mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-11 14:39:30 +08:00
20 lines
358 B
Plaintext
20 lines
358 B
Plaintext
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: '[id="app"]',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.css']
|
|
})
|
|
export class AppComponent {
|
|
title = '{{.Name}}';
|
|
|
|
clickMessage = '';
|
|
|
|
onClickMe() {
|
|
// @ts-ignore
|
|
window.backend.basic().then(result =>
|
|
this.clickMessage = result
|
|
);
|
|
}
|
|
}
|