mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
12 lines
210 B
Vue
12 lines
210 B
Vue
<template>
|
|
<div>Hello World</div>
|
|
</template>
|
|
|
|
<script>
|
|
debugger
|
|
</script>
|
|
|
|
<script setup lang="ts" generic="T extends Record<string, string>">
|
|
let foo: T; // test ts syntax
|
|
debugger;
|
|
</script>
|