Purge all vue-class-component with vue-facing-decorator.

Make some strike-throughs for project-task
Update package.json
This commit is contained in:
Matthew Raymer
2023-07-06 17:28:08 +08:00
parent 3b41014083
commit e3f58bd593
11 changed files with 236 additions and 207 deletions

View File

@@ -119,15 +119,11 @@
</template>
<script lang="ts">
import { Options, Vue } from "vue-class-component";
import { Component, Prop, Vue } from "vue-facing-decorator";
@Options({
props: {
msg: String,
},
})
@Component
export default class HelloWorld extends Vue {
msg!: string;
@Prop msg!: string;
}
</script>