init component
This commit is contained in:
16
node_modules/buetify/lib/components/image/BImage.js
generated
vendored
Executable file
16
node_modules/buetify/lib/components/image/BImage.js
generated
vendored
Executable file
@@ -0,0 +1,16 @@
|
||||
import 'bulma/sass/elements/image.sass';
|
||||
import { h } from 'vue';
|
||||
export default function BImage(props, {
|
||||
attrs
|
||||
}) {
|
||||
return h('figure', { ...attrs,
|
||||
class: 'image'
|
||||
}, [h('img', {
|
||||
class: [props.imgClass, {
|
||||
'is-rounded': props.isRounded
|
||||
}],
|
||||
src: props.src,
|
||||
alt: props.alt
|
||||
})]);
|
||||
}
|
||||
//# sourceMappingURL=BImage.js.map
|
||||
Reference in New Issue
Block a user