(method: string)
| 37 | |
| 38 | // dev only |
| 39 | const warnRuntimeUsage = (method: string) => |
| 40 | warn( |
| 41 | `${method}() is a compiler-hint helper that is only usable inside ` + |
| 42 | `<script setup> of a single file component. Its arguments should be ` + |
| 43 | `compiled away and passing it at runtime has no effect.`, |
| 44 | ) |
| 45 | |
| 46 | /** |
| 47 | * Vue `<script setup>` compiler macro for declaring component props. The |
no test coverage detected