We're not talking about variables start with _, just single character _, is it standing for specific attribute in VUE? I saw some code like this:
<script lang="ts">
import { defineComponent } from 'vue';
...
export default defineComponent({
components: {...}
setup(_, { emit }) {...}
});
</script>
The setup function running well with _ as first param, and there's no props defined in the code, so I wondered, is _ mean "props is null" here ?
I didn't found any spec for this on network, anyone can help on this?