libf 2 éve
szülő
commit
f70b44413f
10 módosított fájl, 24928 hozzáadás és 1 törlés
  1. 30 0
      .gitignore
  2. 12 0
      .npmignore
  3. 21 0
      LICENSE
  4. 1 1
      README.md
  5. 24783 0
      package-lock.json
  6. 46 0
      package.json
  7. BIN
      public/favicon.ico
  8. 12 0
      public/index.html
  9. 9 0
      public/main.js
  10. 14 0
      vue.config.js

+ 30 - 0
.gitignore

@@ -0,0 +1,30 @@
+.DS_Store
+node_modules/
+dist/
+cnwangzd*
+
+# local env files
+.env.local
+.env.*.local
+
+# Log files
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+
+# Editor directories and files
+.idea
+.vscode
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
+*.
+
+# Editor directories and files
+.DS_Store
+.vscode
+node_modules/
+/*.zip

+ 12 - 0
.npmignore

@@ -0,0 +1,12 @@
+
+# Editor directories and files
+.DS_Store
+.vscode
+node_modules/
+/*.zip
+
+/.env
+/reinstall.sh
+/publish.sh
+/vue.config.js
+/src/main.js

+ 21 - 0
LICENSE

@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2021 wecise
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

+ 1 - 1
README.md

@@ -1 +1 @@
-[M³小应用](http://wecise.com/)
+[M³](http://wecise.com/)日历

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 24783 - 0
package-lock.json


+ 46 - 0
package.json

@@ -0,0 +1,46 @@
+{
+  "name": "m3calendar",
+  "version": "1.0.0",
+  "author": "wecise",
+  "license": "MIT",
+  "description": "M³ Applet",
+  "keywords": [
+    "M³"
+  ],
+  "main": "src/index.js",
+  "scripts": {
+    "serve": "vue-cli-service serve",
+    "build": "vue-cli-service build",
+    "lint": "vue-cli-service lint"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/wecise/m3js.git"
+  },
+  "bugs": {
+    "url": "https://github.com/wecise/m3js/issues"
+  },
+  "homepage": "https://github.com/wecise/m3js#readme",
+  "dependencies": {
+    "@toast-ui/calendar": "^2.1.3",
+    "@wecise/m3js": "^1.0.60",
+    "animate.css": "^4.1.1",
+    "axios": "^0.23.0",
+    "element-ui": "^2.15.6",
+    "js-beautify": "^1.14.0",
+    "js-cookie": "^2.2.1",
+    "lodash": "^4.17.21",
+    "moment": "^2.29.1",
+    "svg-sprite-loader": "^6.0.2",
+    "vue": "^2.6.14",
+    "vue-i18n": "^8.22.3",
+    "vue-split-panel": "^1.0.4",
+    "vue-template-compiler": "^2.6.14"
+  },
+  "devDependencies": {
+    "@vue/cli-service": "~4.5.0",
+    "compression-webpack-plugin": "^5.0.2",
+    "uglifyjs-webpack-plugin": "^2.2.0",
+    "webpack-zip-plugin": "^0.1.6"
+  }
+}

BIN
public/favicon.ico


+ 12 - 0
public/index.html

@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <title>📅日历</title>
+  </head>
+  <body>
+    <div id="app"></div>
+    <script type="module" src="./main.js"></script>
+  </body>
+</html>

+ 9 - 0
public/main.js

@@ -0,0 +1,9 @@
+import Vue from 'vue';
+import Calendar from './calendar/Calendar.vue';
+
+/* eslint-disable no-new */
+new Vue({
+  el: '#app',
+  components: { Calendar },
+  render: (h) => h(Calendar),
+});

+ 14 - 0
vue.config.js

@@ -0,0 +1,14 @@
+// 从m3js模版加载vue cli配置信息
+const m3config = require("@wecise/m3js/mbase/vue.config")
+// 输出vue cli配置信息
+module.exports = m3config({
+    // 开发阶段本地web服务
+    devServer: {
+        port: 8080, // 开发阶段本地服务端口,当前端口被占用时按自动+1处理
+    },
+    configureWebpack: {
+        entry: {
+            app: "./src/main.js"
+        }
+    }
+})