`Hoge.vue` の中で `<template><Hoge /></template>` のように自身を再帰的に定義したい場合。[[defineOptions]]の `name` に名称を指定する。 ```html <script setup lang="ts"> defineOptions({ name: "Hoge" }); </script> <template> <Hoge /> </template> ```