### What problem does this feature solve? Support using enum in template with `<script setup>`. ### What does the proposed API look like? ```vue <template> {{ Foo.bar }} </template> <script setup lang="ts"> enum Foo { bar } </script> ``` <!-- generated by vue-issues. DO NOT REMOVE -->