我正在查看现有的Vue代码库,我看到<template>标记如下:
<template>
<template #default> <template #content> <template #close>
我知道每个vue组件都包含在<template>标签中,但我以前从未见过#default或#content嵌入模板标签中。这是什么目的?我怀疑那些#是可定制的,但你只需要定义它们?如果是这样的话,在vue项目中我在哪里可以找到它?我假设在vue项目中有一个标准的位置来存储这样的文件。谢谢。
#default
#content
#
pgky5nke1#
template标记中的#是v-slot:的简写。请参见:https://vuejs.org/guide/components/slots.html#named-slots
template
v-slot:
8tntrjer2#
#是vue v-slot:的简写。can read a perfect example here
2条答案
按热度按时间pgky5nke1#
template
标记中的#
是v-slot:
的简写。请参见:https://vuejs.org/guide/components/slots.html#named-slots8tntrjer2#
#
是vuev-slot:
的简写。can read a perfect example here