%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/camillo/camillo-api-master/nova-components/Welcome/dist/js/
Upload File :
Create Path :
Current File : //var/www/html/camillo/camillo-api-master/nova-components/Welcome/dist/js/card.js

/******/ (function(modules) { // webpackBootstrap
/******/ 	// The module cache
/******/ 	var installedModules = {};
/******/
/******/ 	// The require function
/******/ 	function __webpack_require__(moduleId) {
/******/
/******/ 		// Check if module is in cache
/******/ 		if(installedModules[moduleId]) {
/******/ 			return installedModules[moduleId].exports;
/******/ 		}
/******/ 		// Create a new module (and put it into the cache)
/******/ 		var module = installedModules[moduleId] = {
/******/ 			i: moduleId,
/******/ 			l: false,
/******/ 			exports: {}
/******/ 		};
/******/
/******/ 		// Execute the module function
/******/ 		modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ 		// Flag the module as loaded
/******/ 		module.l = true;
/******/
/******/ 		// Return the exports of the module
/******/ 		return module.exports;
/******/ 	}
/******/
/******/
/******/ 	// expose the modules object (__webpack_modules__)
/******/ 	__webpack_require__.m = modules;
/******/
/******/ 	// expose the module cache
/******/ 	__webpack_require__.c = installedModules;
/******/
/******/ 	// define getter function for harmony exports
/******/ 	__webpack_require__.d = function(exports, name, getter) {
/******/ 		if(!__webpack_require__.o(exports, name)) {
/******/ 			Object.defineProperty(exports, name, {
/******/ 				configurable: false,
/******/ 				enumerable: true,
/******/ 				get: getter
/******/ 			});
/******/ 		}
/******/ 	};
/******/
/******/ 	// getDefaultExport function for compatibility with non-harmony modules
/******/ 	__webpack_require__.n = function(module) {
/******/ 		var getter = module && module.__esModule ?
/******/ 			function getDefault() { return module['default']; } :
/******/ 			function getModuleExports() { return module; };
/******/ 		__webpack_require__.d(getter, 'a', getter);
/******/ 		return getter;
/******/ 	};
/******/
/******/ 	// Object.prototype.hasOwnProperty.call
/******/ 	__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ 	// __webpack_public_path__
/******/ 	__webpack_require__.p = "";
/******/
/******/ 	// Load entry module and return exports
/******/ 	return __webpack_require__(__webpack_require__.s = 0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports, __webpack_require__) {

__webpack_require__(1);
module.exports = __webpack_require__(6);


/***/ }),
/* 1 */
/***/ (function(module, exports, __webpack_require__) {

Nova.booting(function (Vue, router) {
    Vue.component('welcome', __webpack_require__(2));
});

/***/ }),
/* 2 */
/***/ (function(module, exports, __webpack_require__) {

var disposed = false
var normalizeComponent = __webpack_require__(3)
/* script */
var __vue_script__ = __webpack_require__(4)
/* template */
var __vue_template__ = __webpack_require__(5)
/* template functional */
var __vue_template_functional__ = false
/* styles */
var __vue_styles__ = null
/* scopeId */
var __vue_scopeId__ = null
/* moduleIdentifier (server only) */
var __vue_module_identifier__ = null
var Component = normalizeComponent(
  __vue_script__,
  __vue_template__,
  __vue_template_functional__,
  __vue_styles__,
  __vue_scopeId__,
  __vue_module_identifier__
)
Component.options.__file = "resources/js/components/Card.vue"

/* hot reload */
if (false) {(function () {
  var hotAPI = require("vue-hot-reload-api")
  hotAPI.install(require("vue"), false)
  if (!hotAPI.compatible) return
  module.hot.accept()
  if (!module.hot.data) {
    hotAPI.createRecord("data-v-b9bc2c0a", Component.options)
  } else {
    hotAPI.reload("data-v-b9bc2c0a", Component.options)
  }
  module.hot.dispose(function (data) {
    disposed = true
  })
})()}

module.exports = Component.exports


/***/ }),
/* 3 */
/***/ (function(module, exports) {

/* globals __VUE_SSR_CONTEXT__ */

// IMPORTANT: Do NOT use ES2015 features in this file.
// This module is a runtime utility for cleaner component module output and will
// be included in the final webpack user bundle.

module.exports = function normalizeComponent (
  rawScriptExports,
  compiledTemplate,
  functionalTemplate,
  injectStyles,
  scopeId,
  moduleIdentifier /* server only */
) {
  var esModule
  var scriptExports = rawScriptExports = rawScriptExports || {}

  // ES6 modules interop
  var type = typeof rawScriptExports.default
  if (type === 'object' || type === 'function') {
    esModule = rawScriptExports
    scriptExports = rawScriptExports.default
  }

  // Vue.extend constructor export interop
  var options = typeof scriptExports === 'function'
    ? scriptExports.options
    : scriptExports

  // render functions
  if (compiledTemplate) {
    options.render = compiledTemplate.render
    options.staticRenderFns = compiledTemplate.staticRenderFns
    options._compiled = true
  }

  // functional template
  if (functionalTemplate) {
    options.functional = true
  }

  // scopedId
  if (scopeId) {
    options._scopeId = scopeId
  }

  var hook
  if (moduleIdentifier) { // server build
    hook = function (context) {
      // 2.3 injection
      context =
        context || // cached call
        (this.$vnode && this.$vnode.ssrContext) || // stateful
        (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
      // 2.2 with runInNewContext: true
      if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
        context = __VUE_SSR_CONTEXT__
      }
      // inject component styles
      if (injectStyles) {
        injectStyles.call(this, context)
      }
      // register component module identifier for async chunk inferrence
      if (context && context._registeredComponents) {
        context._registeredComponents.add(moduleIdentifier)
      }
    }
    // used by ssr in case component is cached and beforeCreate
    // never gets called
    options._ssrRegister = hook
  } else if (injectStyles) {
    hook = injectStyles
  }

  if (hook) {
    var functional = options.functional
    var existing = functional
      ? options.render
      : options.beforeCreate

    if (!functional) {
      // inject component registration as beforeCreate hook
      options.beforeCreate = existing
        ? [].concat(existing, hook)
        : [hook]
    } else {
      // for template-only hot-reload because in that case the render fn doesn't
      // go through the normalizer
      options._injectStyles = hook
      // register for functioal component in vue file
      options.render = function renderWithStyleInjection (h, context) {
        hook.call(context)
        return existing(h, context)
      }
    }
  }

  return {
    esModule: esModule,
    exports: scriptExports,
    options: options
  }
}


/***/ }),
/* 4 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {

"use strict";
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//

/* harmony default export */ __webpack_exports__["default"] = ({
    props: ['card'],

    mounted: function mounted() {
        //
    }
});

/***/ }),
/* 5 */
/***/ (function(module, exports, __webpack_require__) {

var render = function() {
  var _vm = this
  var _h = _vm.$createElement
  var _c = _vm._self._c || _h
  return _c("div", [
    _vm._m(0),
    _vm._v(" "),
    _c(
      "div",
      { staticClass: "flex" },
      [
        _c(
          "card",
          {
            staticClass:
              "flex-1 items-center justify-center rounded-none rounded-tl border-r border-grey-light",
            staticStyle: { "border-color": "#FBBBAF" }
          },
          [
            _c("div", { staticClass: "px-6 py-6 " }, [
              _c(
                "div",
                {
                  staticClass: "text-center text-xl",
                  staticStyle: {
                    float: "left",
                    width: "60px",
                    "font-size": "35px"
                  }
                },
                [
                  _c("i", {
                    staticClass: "far fa-clipboard",
                    staticStyle: { color: "#FF7257" }
                  })
                ]
              ),
              _vm._v(" "),
              _c("div", { staticStyle: { "margin-left": "70px" } }, [
                _c("h3", [_vm._v("Guida alla creazione dell'istituto")]),
                _vm._v(" "),
                _c("p", { staticClass: "mt-4 text-sm" }, [
                  _c("b", [_vm._v("É il primo accesso al backoffice?")]),
                  _vm._v(
                    " Scarica la guida alle\n                    operazioni necessarie per iniziare ad utilizzare il gestionale\n                    di Camillo nel migliore dei modi!"
                  )
                ]),
                _vm._v(" "),
                _c("p", { staticClass: "mt-4 text-sm" }, [
                  _c(
                    "a",
                    {
                      staticClass:
                        "no-underline text-white font-bold py-1 px-4",
                      staticStyle: { background: "#FF7257" },
                      attrs: {
                        href: "/pdf/DIRIGENTE_FLUSSO.pdf",
                        target: "_blank"
                      }
                    },
                    [_vm._v("scarica ora")]
                  )
                ])
              ])
            ])
          ]
        ),
        _vm._v(" "),
        _c(
          "card",
          {
            staticClass:
              "flex-1 items-center justify-center rounded-none rounded-tr border-grey-light",
            staticStyle: { "border-color": "#FBBBAF" }
          },
          [
            _c("div", { staticClass: "px-6 py-6 pt-10" }, [
              _c("p", { staticStyle: { "text-align": "center" } })
            ])
          ]
        )
      ],
      1
    ),
    _vm._v(" "),
    _c(
      "div",
      { staticClass: "flex " },
      [
        _c(
          "card",
          {
            staticClass:
              "flex-1 items-center justify-center rounded-none rounded-bl border-r border-t border-grey-light",
            staticStyle: { "border-color": "#FBBBAF" }
          },
          [
            _c("div", { staticClass: "px-6 py-6 " }, [
              _c(
                "div",
                {
                  staticClass: "text-center text-xl",
                  staticStyle: {
                    float: "left",
                    width: "60px",
                    "font-size": "35px"
                  }
                },
                [
                  _c("i", {
                    staticClass: "fas fa-newspaper",
                    staticStyle: { color: "#FF7257" }
                  })
                ]
              ),
              _vm._v(" "),
              _c("div", { staticStyle: { "margin-left": "70px" } }, [
                _c("h3", [_vm._v("Rimani aggiornato")]),
                _vm._v(" "),
                _c("p", { staticClass: "mt-4 text-sm" }, [
                  _vm._v(
                    "Segui Camillo e tutti gli articoli che vengono pubblicati\n                    da esperti sul mondo dei bambini e della loro\n                    sicurezza"
                  )
                ]),
                _vm._v(" "),
                _c("p", { staticClass: "mt-4 text-sm" }, [
                  _c(
                    "a",
                    {
                      staticClass:
                        "no-underline text-white font-bold py-1 px-4",
                      staticStyle: { background: "#FF7257" },
                      attrs: {
                        href: "https://camillo.online/articoli/",
                        target: "_blank"
                      }
                    },
                    [_vm._v("leggi ora")]
                  )
                ])
              ])
            ])
          ]
        ),
        _vm._v(" "),
        _c(
          "card",
          {
            staticClass:
              "flex-1 items-center justify-center rounded-none rounded-br border-t border-grey-light",
            staticStyle: { "border-color": "#FBBBAF" }
          },
          [
            _c("div", { staticClass: "px-6 py-6 " }, [
              _c(
                "div",
                {
                  staticClass: "text-center text-xl",
                  staticStyle: {
                    float: "left",
                    width: "60px",
                    "font-size": "35px"
                  }
                },
                [
                  _c("i", {
                    staticClass: "fas fa-share-alt",
                    staticStyle: { color: "#FF7257" }
                  })
                ]
              ),
              _vm._v(" "),
              _c("div", { staticStyle: { "margin-left": "70px" } }, [
                _c("h3", [_vm._v("Camillo sui social")]),
                _vm._v(" "),
                _c("p", { staticClass: "mt-4 text-sm" }, [
                  _vm._v(
                    "Segui Camillo anche sui social e usa il tag\n                    #forzacamillo per condivedere la tua esperienza\n                    e i tuoi momenti con lui!"
                  )
                ]),
                _vm._v(" "),
                _c("p", { staticClass: "mt-4 text-xl" }, [
                  _c(
                    "a",
                    {
                      staticStyle: { color: "#FF7257" },
                      attrs: {
                        href: "https://www.facebook.com/camillonline/",
                        target: "_blank"
                      }
                    },
                    [_c("i", { staticClass: "fab fa-facebook" })]
                  ),
                  _vm._v(" "),
                  _c(
                    "a",
                    {
                      staticStyle: { color: "#FF7257" },
                      attrs: {
                        href: "https://www.instagram.com/camillo.online/",
                        target: "_blank"
                      }
                    },
                    [_c("i", { staticClass: "fab fa-instagram" })]
                  )
                ])
              ])
            ])
          ]
        )
      ],
      1
    )
  ])
}
var staticRenderFns = [
  function() {
    var _vm = this
    var _h = _vm.$createElement
    var _c = _vm._self._c || _h
    return _c("div", { staticClass: "mb-6" }, [
      _c("h1", [_vm._v("Benvenuto su Camillo!")]),
      _vm._v(" "),
      _c("h4", [
        _vm._v(
          "Inizia subito a gestire il tuo Istituto e tutte le tipologie di utenti."
        )
      ])
    ])
  }
]
render._withStripped = true
module.exports = { render: render, staticRenderFns: staticRenderFns }
if (false) {
  module.hot.accept()
  if (module.hot.data) {
    require("vue-hot-reload-api")      .rerender("data-v-b9bc2c0a", module.exports)
  }
}

/***/ }),
/* 6 */
/***/ (function(module, exports) {

// removed by extract-text-webpack-plugin

/***/ })
/******/ ]);

Zerion Mini Shell 1.0