1 2 3 4 5 6 7 8 9
<script setup lang="ts"> import { formatLabel } from './shared' const label = formatLabel('save') </script> <template> <button>{{ label }}</button> </template>