First roll out of an AlertMessage control

This commit is contained in:
Matthew Raymer
2023-07-03 20:24:23 +08:00
parent 8d8635a3e6
commit 3c977a1f28
2 changed files with 11 additions and 40 deletions

View File

@@ -12,12 +12,12 @@
</template>
<script lang="ts">
import { Component, Vue } from "vue-facing-decorator";
import { Component, Prop, Vue } from "vue-facing-decorator";
@Component
export default class AlertMessage extends Vue {
alertTitle = "";
alertMessage = "";
@Prop alertTitle = "";
@Prop alertMessage = "";
public onClickClose() {
this.alertTitle = "";