更新面试题

This commit is contained in:
2026-06-27 00:27:46 +08:00
parent 82c0f31cae
commit 850f7543b2
7 changed files with 1500 additions and 453 deletions

View File

@@ -1,3 +1,4 @@
{ {
"topic_20260626-084849_ae13b749f70ea556": 1782463729575 "topic_20260626-084849_ae13b749f70ea556": 1782463729575,
"topic_20260626-155701_2112a87ef28bf822": 1782489421463
} }

View File

@@ -1,5 +1,7 @@
{ {
"topic_20260626-084849_ae13b749f70ea556": "auto", "topic_20260626-084849_ae13b749f70ea556": "auto",
"topic_20260626-085627_e3928116af40710e": "auto", "topic_20260626-085627_e3928116af40710e": "auto",
"topic_20260626-093001_b040128cfc0f086c": "auto" "topic_20260626-093001_b040128cfc0f086c": "auto",
"topic_20260626-155701_2112a87ef28bf822": "auto",
"topic_20260626-160318_753694613866863b": "auto"
} }

View File

@@ -1,5 +1,7 @@
{ {
"topic_20260626-084849_ae13b749f70ea556": "这个文件中的plugin调用的函数h…", "topic_20260626-084849_ae13b749f70ea556": "这个文件中的plugin调用的函数h…",
"topic_20260626-085627_e3928116af40710e": "我写这个项目主要是用做面试用的,所以…", "topic_20260626-085627_e3928116af40710e": "我写这个项目主要是用做面试用的,所以…",
"topic_20260626-093001_b040128cfc0f086c": "帮我在plugins/plugin…" "topic_20260626-093001_b040128cfc0f086c": "帮我在plugins/plugin…",
"topic_20260626-155701_2112a87ef28bf822": "第五个问题关于钩子生命周期的回答写的…",
"topic_20260626-160318_753694613866863b": "帮我添加10个前端工程化中常问的题目…"
} }

File diff suppressed because it is too large Load Diff

5
package-lock.json generated
View File

@@ -68,7 +68,6 @@
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"peer": true,
"dependencies": { "dependencies": {
"@emnapi/wasi-threads": "1.2.2", "@emnapi/wasi-threads": "1.2.2",
"tslib": "^2.4.0" "tslib": "^2.4.0"
@@ -81,7 +80,6 @@
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"peer": true,
"dependencies": { "dependencies": {
"tslib": "^2.4.0" "tslib": "^2.4.0"
} }
@@ -891,7 +889,6 @@
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"peer": true,
"engines": { "engines": {
"node": ">=12" "node": ">=12"
}, },
@@ -1001,7 +998,6 @@
"integrity": "sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==", "integrity": "sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"lightningcss": "^1.32.0", "lightningcss": "^1.32.0",
"picomatch": "^4.0.4", "picomatch": "^4.0.4",
@@ -1079,7 +1075,6 @@
"resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.39.tgz", "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.39.tgz",
"integrity": "sha512-xmZCYabFGcirU8r0fTuvl/LICc1OU620rnqepaJDL/a141ZigkG7AyaxQLdqJ02ZRYzWe6YPaDHeQx7MfknQfA==", "integrity": "sha512-xmZCYabFGcirU8r0fTuvl/LICc1OU620rnqepaJDL/a141ZigkG7AyaxQLdqJ02ZRYzWe6YPaDHeQx7MfknQfA==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"@vue/compiler-dom": "3.5.39", "@vue/compiler-dom": "3.5.39",
"@vue/compiler-sfc": "3.5.39", "@vue/compiler-sfc": "3.5.39",

46
qodana.yaml Normal file
View File

@@ -0,0 +1,46 @@
#-------------------------------------------------------------------------------#
# Qodana analysis is configured by qodana.yaml file #
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
#-------------------------------------------------------------------------------#
#################################################################################
# WARNING: Do not store sensitive information in this file, #
# as its contents will be included in the Qodana report. #
#################################################################################
version: "1.0"
#Specify inspection profile for code analysis
profile:
name: qodana.starter
#Enable inspections
#include:
# - name: <SomeEnabledInspectionId>
#Disable inspections
#exclude:
# - name: <SomeDisabledInspectionId>
# paths:
# - <path/where/not/run/inspection>
#Execute shell command before Qodana execution (Applied in CI/CD pipeline)
#bootstrap: sh ./prepare-qodana.sh
#Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
#plugins:
# - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
# Quality gate. Will fail the CI/CD pipeline if any condition is not met
# severityThresholds - configures maximum thresholds for different problem severities
# testCoverageThresholds - configures minimum code coverage on a whole project and newly added code
# Code Coverage is available in Ultimate and Ultimate Plus plans
#failureConditions:
# severityThresholds:
# any: 15
# critical: 5
# testCoverageThresholds:
# fresh: 70
# total: 50
#Specify Qodana linter for analysis (Applied in CI/CD pipeline)
linter: jetbrains/qodana-js:2026.1

View File

@@ -2,6 +2,7 @@ import { createApp } from 'vue'
import './style.css' import './style.css'
import App from './App.vue' import App from './App.vue'
console.log(123456)
console.log(123456) console.log(123456)
createApp(App).mount('#app') createApp(App).mount('#app')