* fix(cli): shouldn't load tsconfig when typescript disabled * feat(cli): support remove type when non-typescript * feat: patch `detype` and fix ts extension * test: update * chore: update lock * feat: patch again * fix: missing * chore: update lock * feat: support root option * chore: update lock * feat: transform utils to js by detype * refactor: load jsconfig and remove root option * chore: remove babel/core
13 lines
178 B
Vue
13 lines
178 B
Vue
<script lang="ts" setup>
|
|
const array: (number | string)[] = [1, 2, 3]
|
|
</script>
|
|
|
|
<template>
|
|
<div v-bind="{ array }">
|
|
template
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|