\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n \r\n 0\">\r\n \r\n mdi-lock-check\r\n Bloqueado\r\n \r\n \r\n mdi-draw\r\n \r\n \r\n\r\n \r\n \r\n \r\n mdi-lock-check\r\n Bloqueado\r\n \r\n \r\n mdi-draw\r\n \r\n \r\n\r\n \r\n mdi-file-pdf\r\n \r\n\r\n \r\n \r\n \r\n mdi-folder-outline\r\n \r\n \r\n\r\n \r\n \r\n \r\n {{item.nombre}}\r\n \r\n \r\n \r\n Aplicar\r\n \r\n \r\n\r\n \r\n mdi-delete-alert-outline\r\n \r\n \r\n \r\n\r\n \r\n 0 ? 'info' : 'success'\" \r\n text-color=\"white\">\r\n {{ item.agrupador_flujo_id > 0 ? 'FLUJO' : 'DOCUMENTO' }}\r\n \r\n \r\n\r\n \r\n
\r\n\r\n\r\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vuetify-loader/lib/loader.js??ref--19-0!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DataTableServerSide.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vuetify-loader/lib/loader.js??ref--19-0!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DataTableServerSide.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./DataTableServerSide.vue?vue&type=template&id=605b8254&\"\nimport script from \"./DataTableServerSide.vue?vue&type=script&lang=js&\"\nexport * from \"./DataTableServerSide.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VBtn } from 'vuetify/lib/components/VBtn';\nimport { VCard } from 'vuetify/lib/components/VCard';\nimport { VCardTitle } from 'vuetify/lib/components/VCard';\nimport { VChip } from 'vuetify/lib/components/VChip';\nimport { VDataTable } from 'vuetify/lib/components/VDataTable';\nimport { VDivider } from 'vuetify/lib/components/VDivider';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VMenu } from 'vuetify/lib/components/VMenu';\nimport { VTextField } from 'vuetify/lib/components/VTextField';\nimport { VTreeview } from 'vuetify/lib/components/VTreeview';\ninstallComponents(component, {VBtn,VCard,VCardTitle,VChip,VDataTable,VDivider,VIcon,VMenu,VTextField,VTreeview})\n","import VCard from './VCard';\nimport { createSimpleFunctional } from '../../util/helpers';\nconst VCardActions = createSimpleFunctional('v-card__actions');\nconst VCardSubtitle = createSimpleFunctional('v-card__subtitle');\nconst VCardText = createSimpleFunctional('v-card__text');\nconst VCardTitle = createSimpleFunctional('v-card__title');\nexport { VCard, VCardActions, VCardSubtitle, VCardText, VCardTitle };\nexport default {\n $_vuetify_subcomponents: {\n VCard,\n VCardActions,\n VCardSubtitle,\n VCardText,\n VCardTitle\n }\n};\n//# sourceMappingURL=index.js.map","// Styles\nimport \"../../../src/components/VCard/VCard.sass\"; // Extensions\n\nimport VSheet from '../VSheet'; // Mixins\n\nimport Loadable from '../../mixins/loadable';\nimport Routable from '../../mixins/routable'; // Helpers\n\nimport mixins from '../../util/mixins';\n/* @vue/component */\n\nexport default mixins(Loadable, Routable, VSheet).extend({\n name: 'v-card',\n props: {\n flat: Boolean,\n hover: Boolean,\n img: String,\n link: Boolean,\n loaderHeight: {\n type: [Number, String],\n default: 4\n },\n outlined: Boolean,\n raised: Boolean,\n shaped: Boolean\n },\n computed: {\n classes() {\n return {\n 'v-card': true,\n ...Routable.options.computed.classes.call(this),\n 'v-card--flat': this.flat,\n 'v-card--hover': this.hover,\n 'v-card--link': this.isClickable,\n 'v-card--loading': this.loading,\n 'v-card--disabled': this.disabled,\n 'v-card--outlined': this.outlined,\n 'v-card--raised': this.raised,\n 'v-card--shaped': this.shaped,\n ...VSheet.options.computed.classes.call(this)\n };\n },\n\n styles() {\n const style = { ...VSheet.options.computed.styles.call(this)\n };\n\n if (this.img) {\n style.background = `url(\"${this.img}\") center center / cover no-repeat`;\n }\n\n return style;\n }\n\n },\n methods: {\n genProgress() {\n const render = Loadable.options.methods.genProgress.call(this);\n if (!render) return null;\n return this.$createElement('div', {\n staticClass: 'v-card__progress',\n key: 'progress'\n }, [render]);\n }\n\n },\n\n render(h) {\n const {\n tag,\n data\n } = this.generateRouteLink();\n data.style = this.styles;\n\n if (this.isClickable) {\n data.attrs = data.attrs || {};\n data.attrs.tabindex = 0;\n }\n\n return h(tag, this.setBackgroundColor(this.color, data), [this.genProgress(), this.$slots.default]);\n }\n\n});\n//# sourceMappingURL=VCard.js.map","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-container',{attrs:{\"fluid\":\"\"}},[_c('v-row',[_c('v-col',[_c('h1',{staticClass:\"headline mb-1\"},[_vm._v(\"Bandeja de entrada\")]),_c('DataTableServerSide',{attrs:{\"opt\":\"inbox\"}})],1)],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","