We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb0a3ad commit c50b6f9Copy full SHA for c50b6f9
docs/components/componentdoc.vue
@@ -6,12 +6,8 @@
6
7
<code v-code class="html">
8
<{{componentName}}
9
-
10
- <template v-for="prop in props_items">
11
- {{isConst(prop.default) ? '' : ':'}}{{prop.prop}}="{{prop.default}}"<br></template>
12
- <template v-for="event in events"> @{{event.event}}=""<br></template>
13
- ></code>
14
+ <template v-for="prop in props_items" v-if="prop.default">{{isConst(prop.default) ? '' : ':'}}{{prop.prop}}="{{prop.default}}"<br></template>>
+ </code>
15
<template v-if="props_items && props_items.length > 0">
16
<h4>Properties</h4>
17
<section>
0 commit comments