| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /framework7/node_modules/framework7-vue/components/ |
Upload File : |
import { openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, renderSlot as _renderSlot, normalizeClass as _normalizeClass } from "vue";
const _hoisted_1 = ["src"];
function render(_ctx, _cache) {
return _openBlock(), _createElementBlock("div", {
class: _normalizeClass(_ctx.classes),
onClick: _cache[1] || (_cache[1] = function () {
return _ctx.onClick && _ctx.onClick(...arguments);
})
}, [_ctx.image ? (_openBlock(), _createElementBlock("img", {
key: 0,
src: _ctx.image
}, null, 8, _hoisted_1)) : _createCommentVNode("", true), _ctx.deletable ? (_openBlock(), _createElementBlock("span", {
key: 1,
class: "messagebar-attachment-delete",
onClick: _cache[0] || (_cache[0] = function () {
return _ctx.onDeleteClick && _ctx.onDeleteClick(...arguments);
})
})) : _createCommentVNode("", true), _renderSlot(_ctx.$slots, "default")], 2);
}
import { computed } from 'vue';
import { classNames } from '../shared/utils.js';
import { colorClasses, colorProps } from '../shared/mixins.js';
export default {
name: 'f7-messagebar-attachment',
render,
props: {
image: String,
deletable: {
type: Boolean,
default: true
},
...colorProps
},
emits: ['attachment:click', 'attachment:delete'],
setup(props, _ref) {
let {
emit
} = _ref;
const onClick = event => {
emit('attachment:click', event);
};
const onDeleteClick = event => {
emit('attachment:delete', event);
};
const classes = computed(() => classNames('messagebar-attachment', colorClasses(props)));
return {
classes,
onClick,
onDeleteClick
};
}
};