update code
This commit is contained in:
330
public/42.js
Normal file
330
public/42.js
Normal file
@@ -0,0 +1,330 @@
|
||||
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[42],{
|
||||
|
||||
/***/ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/src/views/pages/Login.vue?vue&type=script&lang=js&":
|
||||
/*!*********************************************************************************************************************************************************************!*\
|
||||
!*** ./node_modules/babel-loader/lib??ref--4-0!./node_modules/vue-loader/lib??vue-loader-options!./resources/js/src/views/pages/Login.vue?vue&type=script&lang=js& ***!
|
||||
\*********************************************************************************************************************************************************************/
|
||||
/*! exports provided: default */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
/* harmony default export */ __webpack_exports__["default"] = ({
|
||||
name: "Login",
|
||||
data: function data() {
|
||||
return {
|
||||
email: "admin@domain.com",
|
||||
password: "password",
|
||||
error: null
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
login: function login() {
|
||||
var _this = this;
|
||||
|
||||
this.$store.dispatch("auth/login", {
|
||||
email: this.email,
|
||||
password: this.password
|
||||
}).then(function (response) {
|
||||
_this.$router.push(_this.$route.query.redirectFrom || {
|
||||
name: "Trang chủ"
|
||||
});
|
||||
}).then(function (response) {
|
||||
_this.$toast.success("Đăng nhập thành công");
|
||||
})["catch"](function (error) {
|
||||
_this.toastHttpError(error);
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/src/views/pages/Login.vue?vue&type=template&id=ba09a9b8&":
|
||||
/*!*************************************************************************************************************************************************************************************************************!*\
|
||||
!*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./resources/js/src/views/pages/Login.vue?vue&type=template&id=ba09a9b8& ***!
|
||||
\*************************************************************************************************************************************************************************************************************/
|
||||
/*! exports provided: render, staticRenderFns */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c(
|
||||
"CContainer",
|
||||
{ staticClass: "d-flex content-center min-vh-100" },
|
||||
[
|
||||
_c(
|
||||
"CRow",
|
||||
{ staticClass: "col-md-6" },
|
||||
[
|
||||
_c(
|
||||
"CCol",
|
||||
[
|
||||
_c(
|
||||
"CCardGroup",
|
||||
[
|
||||
_c(
|
||||
"CCard",
|
||||
{ staticClass: "p-4 px-5" },
|
||||
[
|
||||
_c(
|
||||
"CCardBody",
|
||||
[
|
||||
_c(
|
||||
"CForm",
|
||||
[
|
||||
_c("h1", { staticClass: "pb-4" }, [
|
||||
_vm._v("Đăng nhập")
|
||||
]),
|
||||
_vm._v(" "),
|
||||
_c(
|
||||
"CAlert",
|
||||
{
|
||||
attrs: { show: !!_vm.error, color: "warning" }
|
||||
},
|
||||
[_vm._v(_vm._s(_vm.error))]
|
||||
),
|
||||
_vm._v(" "),
|
||||
_c("CInput", {
|
||||
attrs: {
|
||||
autocomplete: "email",
|
||||
placeholder: "Email or Username...",
|
||||
required: ""
|
||||
},
|
||||
scopedSlots: _vm._u([
|
||||
{
|
||||
key: "prepend-content",
|
||||
fn: function() {
|
||||
return [
|
||||
_c("CIcon", {
|
||||
attrs: { name: "cil-user" }
|
||||
})
|
||||
]
|
||||
},
|
||||
proxy: true
|
||||
}
|
||||
]),
|
||||
model: {
|
||||
value: _vm.email,
|
||||
callback: function($$v) {
|
||||
_vm.email = $$v
|
||||
},
|
||||
expression: "email"
|
||||
}
|
||||
}),
|
||||
_vm._v(" "),
|
||||
_c("CInput", {
|
||||
attrs: {
|
||||
placeholder: "Password",
|
||||
type: "password",
|
||||
autocomplete: "curent-password"
|
||||
},
|
||||
scopedSlots: _vm._u([
|
||||
{
|
||||
key: "prepend-content",
|
||||
fn: function() {
|
||||
return [
|
||||
_c("CIcon", {
|
||||
attrs: { name: "cil-lock-locked" }
|
||||
})
|
||||
]
|
||||
},
|
||||
proxy: true
|
||||
}
|
||||
]),
|
||||
model: {
|
||||
value: _vm.password,
|
||||
callback: function($$v) {
|
||||
_vm.password = $$v
|
||||
},
|
||||
expression: "password"
|
||||
}
|
||||
}),
|
||||
_vm._v(" "),
|
||||
_c(
|
||||
"CRow",
|
||||
[
|
||||
_c(
|
||||
"CCol",
|
||||
{
|
||||
staticClass: "text-left",
|
||||
attrs: { col: "6" }
|
||||
},
|
||||
[
|
||||
_c(
|
||||
"CButton",
|
||||
{
|
||||
attrs: { color: "primary" },
|
||||
on: { click: _vm.login }
|
||||
},
|
||||
[_vm._v("Đăng nhập")]
|
||||
)
|
||||
],
|
||||
1
|
||||
),
|
||||
_vm._v(" "),
|
||||
_c(
|
||||
"CCol",
|
||||
{
|
||||
staticClass: "text-right",
|
||||
attrs: { col: "6" }
|
||||
},
|
||||
[
|
||||
_c(
|
||||
"CButton",
|
||||
{ attrs: { color: "link" } },
|
||||
[_vm._v("Quên mật khẩu?")]
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/js/src/views/pages/Login.vue":
|
||||
/*!************************************************!*\
|
||||
!*** ./resources/js/src/views/pages/Login.vue ***!
|
||||
\************************************************/
|
||||
/*! exports provided: default */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* harmony import */ var _Login_vue_vue_type_template_id_ba09a9b8___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Login.vue?vue&type=template&id=ba09a9b8& */ "./resources/js/src/views/pages/Login.vue?vue&type=template&id=ba09a9b8&");
|
||||
/* harmony import */ var _Login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Login.vue?vue&type=script&lang=js& */ "./resources/js/src/views/pages/Login.vue?vue&type=script&lang=js&");
|
||||
/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
|
||||
_Login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
|
||||
_Login_vue_vue_type_template_id_ba09a9b8___WEBPACK_IMPORTED_MODULE_0__["render"],
|
||||
_Login_vue_vue_type_template_id_ba09a9b8___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "resources/js/src/views/pages/Login.vue"
|
||||
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/js/src/views/pages/Login.vue?vue&type=script&lang=js&":
|
||||
/*!*************************************************************************!*\
|
||||
!*** ./resources/js/src/views/pages/Login.vue?vue&type=script&lang=js& ***!
|
||||
\*************************************************************************/
|
||||
/*! exports provided: default */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/babel-loader/lib??ref--4-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Login.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/src/views/pages/Login.vue?vue&type=script&lang=js&");
|
||||
/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/js/src/views/pages/Login.vue?vue&type=template&id=ba09a9b8&":
|
||||
/*!*******************************************************************************!*\
|
||||
!*** ./resources/js/src/views/pages/Login.vue?vue&type=template&id=ba09a9b8& ***!
|
||||
\*******************************************************************************/
|
||||
/*! exports provided: render, staticRenderFns */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Login_vue_vue_type_template_id_ba09a9b8___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Login.vue?vue&type=template&id=ba09a9b8& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/src/views/pages/Login.vue?vue&type=template&id=ba09a9b8&");
|
||||
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Login_vue_vue_type_template_id_ba09a9b8___WEBPACK_IMPORTED_MODULE_0__["render"]; });
|
||||
|
||||
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Login_vue_vue_type_template_id_ba09a9b8___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
|
||||
|
||||
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
Reference in New Issue
Block a user