KCKevin Cotoinkevincoto.hashnode.dev·Jun 20, 2022 · 1 min readA Vue Shorthand for SlotsNamed Slots has a shorthand that isn't necessarily shorter but maybe cleaner. This is the regular way: <Todo> <template :description> <Item/> </template> </Todo> This is the cleaner way: <Todo> <template #description> <Item/> </template> </Todo> Foll...00