Skip to content

Commit

Permalink
Update vue examples with script setup
Browse files Browse the repository at this point in the history
  • Loading branch information
yashovardhan authored and AyushBherwani1998 committed Dec 9, 2024
1 parent 0a1a938 commit 4011a94
Show file tree
Hide file tree
Showing 4 changed files with 527 additions and 597 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,8 @@
<Home msg="Welcome to Your Vue.js + TypeScript App" />
</template>

<script lang="ts">
import { defineComponent } from "vue";
<script setup lang="ts">
import Home from "./Home.vue";
export default defineComponent({
name: "App",
components: {
Home,
},
});
</script>

<style>
Expand Down
Loading

0 comments on commit 4011a94

Please sign in to comment.