Skip to content

Commit

Permalink
Add a test case
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Aug 2, 2024
1 parent b68b34e commit 794e314
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions test-workspace/tsc/vue3/#4537/main.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<script setup lang="ts" generic="T">
defineProps<{
type: T;
}>();
defineModel<boolean>({ required: true });
</script>

<template>
<div class="['radio']"></div>
</template>

<style>
.\[\'radio\'\] {
color: red
}
</style>

0 comments on commit 794e314

Please sign in to comment.