0
0
Fork 0
salix-front-mindshore-fork2/src/App.vue

23 lines
310 B
Vue

<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>