Skip to content

Commit

Permalink
test: add a case with import
Browse files Browse the repository at this point in the history
  • Loading branch information
so1ve committed Jul 5, 2023
1 parent 47a917e commit 0bcbd15
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<script setup lang="ts">
import { ref } from 'vue';
// @ts-ignore
let a: number = '';
const msg = ref('Hello World!');
</script>

<template>
<h1>{{ msg }}</h1>
</template>

0 comments on commit 0bcbd15

Please sign in to comment.