Migracja projektu z ReactJS

This commit is contained in:
2020-07-04 14:26:53 +02:00
parent 6bbe0b9747
commit 539688c699
35 changed files with 2215 additions and 9 deletions
+10 -4
View File
@@ -2,8 +2,14 @@
<div class="home">Hello Vue!</div>
</template>
<script>
export default {
name: "Home"
};
<script lang="ts">
import { Vue, Component } from "vue-property-decorator";
@Component
export default class Home extends Vue {
mounted() {}
}
</script>
<style lang="scss" scoped>
</style>