|
<template>
|
|
{{ msg }}
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Options, Vue } from "vue-class-component";
|
|
|
|
@Options({
|
|
props: {
|
|
msg: String,
|
|
},
|
|
})
|
|
export default class App extends Vue {
|
|
msg?: string;
|
|
|
|
data(): Record<string, unknown> {
|
|
return {
|
|
msg: "Hello Salix!",
|
|
};
|
|
}
|
|
}
|
|
</script>
|