D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api
/
vendor
/
facade
/
ignition
/
resources
/
js
/
components
/
Shared
/
Filename :
DefinitionListRow.js
back
Copy
export default { functional: true, props: { label: { default: '' }, }, render(h, context) { return [ h( 'dt', { attrs: { class: 'definition-label', }, }, context.props.label, ), h( 'dd', { attrs: { class: 'definition-value', }, }, context.children, ), ]; }, };