diff --git a/frontend/jsconfig.json b/frontend/jsconfig.json new file mode 100644 index 0000000..b2c0e02 --- /dev/null +++ b/frontend/jsconfig.json @@ -0,0 +1,3 @@ +{ + "include": ["./src/**/*"] +} diff --git a/frontend/package-lock.json b/frontend/package-lock.json index ba90110..33364fd 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -11382,17 +11382,18 @@ } }, "vue-eslint-parser": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.6.0.tgz", - "integrity": "sha512-QXxqH8ZevBrtiZMZK0LpwaMfevQi9UL7lY6Kcp+ogWHC88AuwUPwwCIzkOUc1LR4XsYAt/F9yHXAB/QoD17QXA==", + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz", + "integrity": "sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==", "dev": true, "requires": { "debug": "^4.1.1", - "eslint-scope": "^5.0.0", + "eslint-scope": "^5.1.1", "eslint-visitor-keys": "^1.1.0", "espree": "^6.2.1", "esquery": "^1.4.0", - "lodash": "^4.17.15" + "lodash": "^4.17.21", + "semver": "^6.3.0" }, "dependencies": { "eslint-scope": { diff --git a/frontend/src/components/commitSelector/CommitSlider.vue b/frontend/src/components/commitSelector/CommitSlider.vue index f21b82f..dbadd88 100644 --- a/frontend/src/components/commitSelector/CommitSlider.vue +++ b/frontend/src/components/commitSelector/CommitSlider.vue @@ -2,7 +2,6 @@
@@ -39,12 +38,13 @@
- +
+ +
diff --git a/frontend/src/views/Home.vue b/frontend/src/views/Home.vue index 7ca368c..e4176a0 100644 --- a/frontend/src/views/Home.vue +++ b/frontend/src/views/Home.vue @@ -1,16 +1,29 @@ @@ -51,4 +62,4 @@ export default { .v-data-footer__select { display: none !important; } - \ No newline at end of file + diff --git a/vetur.config.js b/vetur.config.js new file mode 100644 index 0000000..28aa672 --- /dev/null +++ b/vetur.config.js @@ -0,0 +1,34 @@ +// vetur.config.js +/** @type {import('vls').VeturConfig} */ +module.exports = { + // **optional** default: `{}` + // override vscode settings + // Notice: It only affects the settings used by Vetur. + settings: { + "vetur.useWorkspaceDependencies": true, + "vetur.experimental.templateInterpolationService": true + }, + // **optional** default: `[{ root: './' }]` + // support monorepos + projects: [ + "./packages/frontend", // Shorthand for specifying only the project root location + { + // **required** + // Where is your project? + // It is relative to `vetur.config.js`. + root: "./packages/frontend", + // **optional** default: `'package.json'` + // Where is `package.json` in the project? + // We use it to determine the version of vue. + // It is relative to root property. + package: "./package.json", + + // **optional** default: `[]` + // Register globally Vue component glob. + // If you set it, you can get completion by that components. + // It is relative to root property. + // Notice: It won't actually do it. You need to use `require.context` or `Vue.component` + globalComponents: ["./src/components/**/*.vue"] + } + ] +}