LICENSES 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*!
  2. * vue-router v3.5.2
  3. * (c) 2021 Evan You
  4. * @license MIT
  5. */
  6. /*!
  7. * JavaScript Cookie v2.2.1
  8. * https://github.com/js-cookie/js-cookie
  9. *
  10. * Copyright 2006, 2015 Klaus Hartl & Fagner Brack
  11. * Released under the MIT license
  12. */
  13. /*!
  14. * Vue.js v2.6.14
  15. * (c) 2014-2021 Evan You
  16. * Released under the MIT License.
  17. */
  18. /*!
  19. * vuex v3.6.2
  20. * (c) 2021 Evan You
  21. * @license MIT
  22. */
  23. /*!
  24. * vue-awesome-swiper v4.1.1
  25. * Copyright (c) Surmon. All rights reserved.
  26. * Released under the MIT License.
  27. * Surmon <https://github.com/surmon-china>
  28. */
  29. /*!
  30. * vue-client-only v0.0.0-semantic-release
  31. * (c) 2021-present egoist <0x142857@gmail.com>
  32. * Released under the MIT License.
  33. */
  34. /*!
  35. * vue-no-ssr v1.1.1
  36. * (c) 2018-present egoist <0x142857@gmail.com>
  37. * Released under the MIT License.
  38. */
  39. /*! *****************************************************************************
  40. Copyright (c) Microsoft Corporation. All rights reserved.
  41. Licensed under the Apache License, Version 2.0 (the "License"); you may not use
  42. this file except in compliance with the License. You may obtain a copy of the
  43. License at http://www.apache.org/licenses/LICENSE-2.0
  44. THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  45. KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
  46. WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
  47. MERCHANTABLITY OR NON-INFRINGEMENT.
  48. See the Apache Version 2.0 License for specific language governing permissions
  49. and limitations under the License.
  50. ***************************************************************************** */
  51. /**
  52. * Checks if an event is supported in the current execution environment.
  53. *
  54. * NOTE: This will not work correctly for non-generic events such as `change`,
  55. * `reset`, `load`, `error`, and `select`.
  56. *
  57. * Borrows from Modernizr.
  58. *
  59. * @param {string} eventNameSuffix Event name, e.g. "click".
  60. * @param {?boolean} capture Check if the capture phase is supported.
  61. * @return {boolean} True if the event is supported.
  62. * @internal
  63. * @license Modernizr 3.0.0pre (Custom Build) | MIT
  64. */