这里写自定义目录标题

    • Vue项目初期报错问题记录大全
  • 1、vs终端无报错,浏览器加载空白,发现Cannot read properties of null (reading 'nextSibling')
  • 解决办法
  • 2.vs终端报错 Component name "Index" should always be multi-word
    • 解决办法
    • 3、element 导航菜单导入显示不完整
    • 解决办法
    • 4、创建远程仓库失败
    • 解决办法
    • Uncaught TypeError: Cannot read properties of undefined (reading 'forEach')
    • 解决办法
    • 项目页面报错 ResizeObserver loop limit exceeded at eval
    • 如何改变文本的样式
    • 插入链接与图片
    • 如何插入一段漂亮的代码片
    • 生成一个适合你的列表
    • 创建一个表格
      • 设定内容居中、居左、居右
      • SmartyPants
    • 创建一个自定义列表
    • 如何创建一个注脚
    • 注释也是必不可少的
    • KaTeX数学公式
    • 新的甘特图功能,丰富你的文章
    • UML 图表
    • FLowchart流程图
    • 导出与导入
      • 导出
      • 导入

Vue项目初期报错问题记录大全

1、vs终端无报错,浏览器加载空白,发现Cannot read properties of null (reading ‘nextSibling’)

PS:下午创建完项目的时候可以成功显示页面,但是晚上测试了一下iconfont图标后就开始报错,将新代码注释掉也依旧报错
解决办法如下: 还未解决呜呜呜

解决办法

原本main.js中的代码

import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import store from './store/index'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import router from './router/index'createApp(App).use(store).use(router).use(ElementPlus).mount("#app");const app = createApp(App);
app.use(ElementPlus);
app.mount("#app");

修改为

import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import store from './store/index'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import router from './router/index'const app = createApp(App)
app.use(store),app.use(router),app.use(ElementPlus),app.mount('#app')`

哈!什么神奇的原理!希望明早起来不会又报错!

2.vs终端报错 Component name “Index” should always be multi-word

解决办法

在vue.config.js文件中源代码为

const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({transpileDependencies: true,
});

修改为

const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({transpileDependencies: true,//关闭eslint校验lintOnSave: false,
});

3、element 导航菜单导入显示不完整

缺少导航一的下拉框

正确显示应为

解决办法

系统使用的是vue3版本,因此也应使用element3即element plus版本
PS:从网站官网进入可以进行版本跳转!

4、创建远程仓库失败

报错信息

解决办法

在git bash 运行命令:

git config --global --add safe.directory+文件完整路径

Uncaught TypeError: Cannot read properties of undefined (reading ‘forEach’)

解决办法

路由配置文件中的属性写错了,本人写的是routers,但是正确写法应如下:

项目页面报错 ResizeObserver loop limit exceeded at eval

可忽略的报错但是项目体验非常不好

后来找到的解决办法 在APP.vue文件中添加如下代码:

 const debounce = (fn, delay) => {let timer = null;return function () {let context = this;let args = arguments;clearTimeout(timer);timer = setTimeout(function () {fn.apply(context, args);}, delay);}
}const _ResizeObserver = window.ResizeObserver;
window.ResizeObserver = class ResizeObserver extends _ResizeObserver{constructor(callback) {callback = debounce(callback, 16);super(callback);}
}

如何改变文本的样式

强调文本 强调文本

加粗文本 加粗文本

标记文本

删除文本

引用文本

H2O is是液体。

210 运算结果是 1024.

插入链接与图片

链接: link.

图片:

带尺寸的图片:

居中的图片:

居中并且带尺寸的图片:

当然,我们为了让用户更加便捷,我们增加了图片拖拽功能。

如何插入一段漂亮的代码片

去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片.

// An highlighted block
var foo = 'bar';

生成一个适合你的列表

  • 项目

    • 项目

      • 项目
  1. 项目1
  2. 项目2
  3. 项目3
  • 计划任务
  • 完成任务

创建一个表格

一个简单的表格是这么创建的:

项目 Value
电脑 $1600
手机 $12
导管 $1

设定内容居中、居左、居右

使用:---------:居中
使用:----------居左
使用----------:居右

第一列 第二列 第三列
第一列文本居中 第二列文本居右 第三列文本居左

SmartyPants

SmartyPants将ASCII标点字符转换为“智能”印刷标点HTML实体。例如:

TYPE ASCII HTML
Single backticks 'Isn't this fun?' ‘Isn’t this fun?’
Quotes "Isn't this fun?" “Isn’t this fun?”
Dashes -- is en-dash, --- is em-dash – is en-dash, — is em-dash

创建一个自定义列表

Markdown
Text-to- HTML conversion tool
Authors
John
Luke

如何创建一个注脚

一个具有注脚的文本。1

注释也是必不可少的

Markdown将文本转换为 HTML

KaTeX数学公式

您可以使用渲染LaTeX数学表达式 KaTeX:

Gamma公式展示 Γ ( n ) = ( n − 1 ) ! ∀ n ∈ N \Gamma(n) = (n-1)!\quad\forall n\in\mathbb N Γ(n)=(n−1)!∀n∈N 是通过欧拉积分

Γ ( z ) = ∫ 0 ∞ t z − 1 e − t d t . \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. Γ(z)=∫0∞​tz−1e−tdt.

你可以找到更多关于的信息 LaTeX 数学表达式here.

新的甘特图功能,丰富你的文章

#mermaid-svg-T3W62o9M902f6avX {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-T3W62o9M902f6avX .error-icon{fill:#552222;}#mermaid-svg-T3W62o9M902f6avX .error-text{fill:#552222;stroke:#552222;}#mermaid-svg-T3W62o9M902f6avX .edge-thickness-normal{stroke-width:2px;}#mermaid-svg-T3W62o9M902f6avX .edge-thickness-thick{stroke-width:3.5px;}#mermaid-svg-T3W62o9M902f6avX .edge-pattern-solid{stroke-dasharray:0;}#mermaid-svg-T3W62o9M902f6avX .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-svg-T3W62o9M902f6avX .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-svg-T3W62o9M902f6avX .marker{fill:#333333;stroke:#333333;}#mermaid-svg-T3W62o9M902f6avX .marker.cross{stroke:#333333;}#mermaid-svg-T3W62o9M902f6avX svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-svg-T3W62o9M902f6avX .mermaid-main-font{font-family:"trebuchet ms",verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-svg-T3W62o9M902f6avX .exclude-range{fill:#eeeeee;}#mermaid-svg-T3W62o9M902f6avX .section{stroke:none;opacity:0.2;}#mermaid-svg-T3W62o9M902f6avX .section0{fill:rgba(102, 102, 255, 0.49);}#mermaid-svg-T3W62o9M902f6avX .section2{fill:#fff400;}#mermaid-svg-T3W62o9M902f6avX .section1,#mermaid-svg-T3W62o9M902f6avX .section3{fill:white;opacity:0.2;}#mermaid-svg-T3W62o9M902f6avX .sectionTitle0{fill:#333;}#mermaid-svg-T3W62o9M902f6avX .sectionTitle1{fill:#333;}#mermaid-svg-T3W62o9M902f6avX .sectionTitle2{fill:#333;}#mermaid-svg-T3W62o9M902f6avX .sectionTitle3{fill:#333;}#mermaid-svg-T3W62o9M902f6avX .sectionTitle{text-anchor:start;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-svg-T3W62o9M902f6avX .grid .tick{stroke:lightgrey;opacity:0.8;shape-rendering:crispEdges;}#mermaid-svg-T3W62o9M902f6avX .grid .tick text{font-family:"trebuchet ms",verdana,arial,sans-serif;fill:#333;}#mermaid-svg-T3W62o9M902f6avX .grid path{stroke-width:0;}#mermaid-svg-T3W62o9M902f6avX .today{fill:none;stroke:red;stroke-width:2px;}#mermaid-svg-T3W62o9M902f6avX .task{stroke-width:2;}#mermaid-svg-T3W62o9M902f6avX .taskText{text-anchor:middle;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-svg-T3W62o9M902f6avX .taskTextOutsideRight{fill:black;text-anchor:start;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-svg-T3W62o9M902f6avX .taskTextOutsideLeft{fill:black;text-anchor:end;}#mermaid-svg-T3W62o9M902f6avX .task.clickable{cursor:pointer;}#mermaid-svg-T3W62o9M902f6avX .taskText.clickable{cursor:pointer;fill:#003163!important;font-weight:bold;}#mermaid-svg-T3W62o9M902f6avX .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163!important;font-weight:bold;}#mermaid-svg-T3W62o9M902f6avX .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163!important;font-weight:bold;}#mermaid-svg-T3W62o9M902f6avX .taskText0,#mermaid-svg-T3W62o9M902f6avX .taskText1,#mermaid-svg-T3W62o9M902f6avX .taskText2,#mermaid-svg-T3W62o9M902f6avX .taskText3{fill:white;}#mermaid-svg-T3W62o9M902f6avX .task0,#mermaid-svg-T3W62o9M902f6avX .task1,#mermaid-svg-T3W62o9M902f6avX .task2,#mermaid-svg-T3W62o9M902f6avX .task3{fill:#8a90dd;stroke:#534fbc;}#mermaid-svg-T3W62o9M902f6avX .taskTextOutside0,#mermaid-svg-T3W62o9M902f6avX .taskTextOutside2{fill:black;}#mermaid-svg-T3W62o9M902f6avX .taskTextOutside1,#mermaid-svg-T3W62o9M902f6avX .taskTextOutside3{fill:black;}#mermaid-svg-T3W62o9M902f6avX .active0,#mermaid-svg-T3W62o9M902f6avX .active1,#mermaid-svg-T3W62o9M902f6avX .active2,#mermaid-svg-T3W62o9M902f6avX .active3{fill:#bfc7ff;stroke:#534fbc;}#mermaid-svg-T3W62o9M902f6avX .activeText0,#mermaid-svg-T3W62o9M902f6avX .activeText1,#mermaid-svg-T3W62o9M902f6avX .activeText2,#mermaid-svg-T3W62o9M902f6avX .activeText3{fill:black!important;}#mermaid-svg-T3W62o9M902f6avX .done0,#mermaid-svg-T3W62o9M902f6avX .done1,#mermaid-svg-T3W62o9M902f6avX .done2,#mermaid-svg-T3W62o9M902f6avX .done3{stroke:grey;fill:lightgrey;stroke-width:2;}#mermaid-svg-T3W62o9M902f6avX .doneText0,#mermaid-svg-T3W62o9M902f6avX .doneText1,#mermaid-svg-T3W62o9M902f6avX .doneText2,#mermaid-svg-T3W62o9M902f6avX .doneText3{fill:black!important;}#mermaid-svg-T3W62o9M902f6avX .crit0,#mermaid-svg-T3W62o9M902f6avX .crit1,#mermaid-svg-T3W62o9M902f6avX .crit2,#mermaid-svg-T3W62o9M902f6avX .crit3{stroke:#ff8888;fill:red;stroke-width:2;}#mermaid-svg-T3W62o9M902f6avX .activeCrit0,#mermaid-svg-T3W62o9M902f6avX .activeCrit1,#mermaid-svg-T3W62o9M902f6avX .activeCrit2,#mermaid-svg-T3W62o9M902f6avX .activeCrit3{stroke:#ff8888;fill:#bfc7ff;stroke-width:2;}#mermaid-svg-T3W62o9M902f6avX .doneCrit0,#mermaid-svg-T3W62o9M902f6avX .doneCrit1,#mermaid-svg-T3W62o9M902f6avX .doneCrit2,#mermaid-svg-T3W62o9M902f6avX .doneCrit3{stroke:#ff8888;fill:lightgrey;stroke-width:2;cursor:pointer;shape-rendering:crispEdges;}#mermaid-svg-T3W62o9M902f6avX .milestone{transform:rotate(45deg) scale(0.8,0.8);}#mermaid-svg-T3W62o9M902f6avX .milestoneText{font-style:italic;}#mermaid-svg-T3W62o9M902f6avX .doneCritText0,#mermaid-svg-T3W62o9M902f6avX .doneCritText1,#mermaid-svg-T3W62o9M902f6avX .doneCritText2,#mermaid-svg-T3W62o9M902f6avX .doneCritText3{fill:black!important;}#mermaid-svg-T3W62o9M902f6avX .activeCritText0,#mermaid-svg-T3W62o9M902f6avX .activeCritText1,#mermaid-svg-T3W62o9M902f6avX .activeCritText2,#mermaid-svg-T3W62o9M902f6avX .activeCritText3{fill:black!important;}#mermaid-svg-T3W62o9M902f6avX .titleText{text-anchor:middle;font-size:18px;fill:#333;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-svg-T3W62o9M902f6avX :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;} 2014-01-07 2014-01-09 2014-01-11 2014-01-13 2014-01-15 2014-01-17 2014-01-19 2014-01-21 已完成 进行中 计划一 计划二 现有任务 Adding GANTT diagram functionality to mermaid
  • 关于 甘特图 语法,参考 这儿,

UML 图表

可以使用UML图表进行渲染。 Mermaid. 例如下面产生的一个序列图:

#mermaid-svg-oaYTAGHxlFYVRlua {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-oaYTAGHxlFYVRlua .error-icon{fill:#552222;}#mermaid-svg-oaYTAGHxlFYVRlua .error-text{fill:#552222;stroke:#552222;}#mermaid-svg-oaYTAGHxlFYVRlua .edge-thickness-normal{stroke-width:2px;}#mermaid-svg-oaYTAGHxlFYVRlua .edge-thickness-thick{stroke-width:3.5px;}#mermaid-svg-oaYTAGHxlFYVRlua .edge-pattern-solid{stroke-dasharray:0;}#mermaid-svg-oaYTAGHxlFYVRlua .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-svg-oaYTAGHxlFYVRlua .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-svg-oaYTAGHxlFYVRlua .marker{fill:#333333;stroke:#333333;}#mermaid-svg-oaYTAGHxlFYVRlua .marker.cross{stroke:#333333;}#mermaid-svg-oaYTAGHxlFYVRlua svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-svg-oaYTAGHxlFYVRlua .actor{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;}#mermaid-svg-oaYTAGHxlFYVRlua text.actor>tspan{fill:black;stroke:none;}#mermaid-svg-oaYTAGHxlFYVRlua .actor-line{stroke:grey;}#mermaid-svg-oaYTAGHxlFYVRlua .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#mermaid-svg-oaYTAGHxlFYVRlua .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#mermaid-svg-oaYTAGHxlFYVRlua #arrowhead path{fill:#333;stroke:#333;}#mermaid-svg-oaYTAGHxlFYVRlua .sequenceNumber{fill:white;}#mermaid-svg-oaYTAGHxlFYVRlua #sequencenumber{fill:#333;}#mermaid-svg-oaYTAGHxlFYVRlua #crosshead path{fill:#333;stroke:#333;}#mermaid-svg-oaYTAGHxlFYVRlua .messageText{fill:#333;stroke:#333;}#mermaid-svg-oaYTAGHxlFYVRlua .labelBox{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;}#mermaid-svg-oaYTAGHxlFYVRlua .labelText,#mermaid-svg-oaYTAGHxlFYVRlua .labelText>tspan{fill:black;stroke:none;}#mermaid-svg-oaYTAGHxlFYVRlua .loopText,#mermaid-svg-oaYTAGHxlFYVRlua .loopText>tspan{fill:black;stroke:none;}#mermaid-svg-oaYTAGHxlFYVRlua .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);}#mermaid-svg-oaYTAGHxlFYVRlua .note{stroke:#aaaa33;fill:#fff5ad;}#mermaid-svg-oaYTAGHxlFYVRlua .noteText,#mermaid-svg-oaYTAGHxlFYVRlua .noteText>tspan{fill:black;stroke:none;}#mermaid-svg-oaYTAGHxlFYVRlua .activation0{fill:#f4f4f4;stroke:#666;}#mermaid-svg-oaYTAGHxlFYVRlua .activation1{fill:#f4f4f4;stroke:#666;}#mermaid-svg-oaYTAGHxlFYVRlua .activation2{fill:#f4f4f4;stroke:#666;}#mermaid-svg-oaYTAGHxlFYVRlua .actorPopupMenu{position:absolute;}#mermaid-svg-oaYTAGHxlFYVRlua .actorPopupMenuPanel{position:absolute;fill:#ECECFF;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#mermaid-svg-oaYTAGHxlFYVRlua .actor-man line{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;}#mermaid-svg-oaYTAGHxlFYVRlua .actor-man circle,#mermaid-svg-oaYTAGHxlFYVRlua line{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;stroke-width:2px;}#mermaid-svg-oaYTAGHxlFYVRlua :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;} 张三 李四 王五 你好!李四, 最近怎么样? 你最近怎么样,王五? 我很好,谢谢! 我很好,谢谢! 李四想了很长时间, 文字太长了 不适合放在一行. 打量着王五... 很好... 王五, 你怎么样? 张三 李四 王五

这将产生一个流程图。:

#mermaid-svg-XlpSwGKkwXOilqGL {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-XlpSwGKkwXOilqGL .error-icon{fill:#552222;}#mermaid-svg-XlpSwGKkwXOilqGL .error-text{fill:#552222;stroke:#552222;}#mermaid-svg-XlpSwGKkwXOilqGL .edge-thickness-normal{stroke-width:2px;}#mermaid-svg-XlpSwGKkwXOilqGL .edge-thickness-thick{stroke-width:3.5px;}#mermaid-svg-XlpSwGKkwXOilqGL .edge-pattern-solid{stroke-dasharray:0;}#mermaid-svg-XlpSwGKkwXOilqGL .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-svg-XlpSwGKkwXOilqGL .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-svg-XlpSwGKkwXOilqGL .marker{fill:#333333;stroke:#333333;}#mermaid-svg-XlpSwGKkwXOilqGL .marker.cross{stroke:#333333;}#mermaid-svg-XlpSwGKkwXOilqGL svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-svg-XlpSwGKkwXOilqGL .label{font-family:"trebuchet ms",verdana,arial,sans-serif;color:#333;}#mermaid-svg-XlpSwGKkwXOilqGL .cluster-label text{fill:#333;}#mermaid-svg-XlpSwGKkwXOilqGL .cluster-label span{color:#333;}#mermaid-svg-XlpSwGKkwXOilqGL .label text,#mermaid-svg-XlpSwGKkwXOilqGL span{fill:#333;color:#333;}#mermaid-svg-XlpSwGKkwXOilqGL .node rect,#mermaid-svg-XlpSwGKkwXOilqGL .node circle,#mermaid-svg-XlpSwGKkwXOilqGL .node ellipse,#mermaid-svg-XlpSwGKkwXOilqGL .node polygon,#mermaid-svg-XlpSwGKkwXOilqGL .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#mermaid-svg-XlpSwGKkwXOilqGL .node .label{text-align:center;}#mermaid-svg-XlpSwGKkwXOilqGL .node.clickable{cursor:pointer;}#mermaid-svg-XlpSwGKkwXOilqGL .arrowheadPath{fill:#333333;}#mermaid-svg-XlpSwGKkwXOilqGL .edgePath .path{stroke:#333333;stroke-width:2.0px;}#mermaid-svg-XlpSwGKkwXOilqGL .flowchart-link{stroke:#333333;fill:none;}#mermaid-svg-XlpSwGKkwXOilqGL .edgeLabel{background-color:#e8e8e8;text-align:center;}#mermaid-svg-XlpSwGKkwXOilqGL .edgeLabel rect{opacity:0.5;background-color:#e8e8e8;fill:#e8e8e8;}#mermaid-svg-XlpSwGKkwXOilqGL .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#mermaid-svg-XlpSwGKkwXOilqGL .cluster text{fill:#333;}#mermaid-svg-XlpSwGKkwXOilqGL .cluster span{color:#333;}#mermaid-svg-XlpSwGKkwXOilqGL div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#mermaid-svg-XlpSwGKkwXOilqGL :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}

链接
长方形
圆角长方形
菱形
  • 关于 Mermaid 语法,参考 这儿,

FLowchart流程图

我们依旧会支持flowchart的流程图:

Created with Raphaël 2.3.0 开始 我的操作 确认? 结束 yes no
  • 关于 Flowchart流程图 语法,参考 这儿.

导出与导入

导出

如果你想尝试使用此编辑器, 你可以在此篇文章任意编辑。当你完成了一篇文章的写作, 在上方工具栏找到 文章导出 ,生成一个.md文件或者.html文件进行本地保存。

导入

如果你想加载一篇你写过的.md文件,在上方工具栏可以选择导入功能进行对应扩展名的文件导入,
继续你的创作。


  1. 注脚的解释 ↩︎

Vue项目初期报错问题记录大全相关推荐

  1. 解决vue项目格式报错问题_@jie

    vue项目格式报错问题: 简述问题:写项目过程中格式一直报错,如下图: 第一步:在项目根目录下创建名为vue.config.js文件,如下图: 第二步:js文件中的内容,如下图: 代码如下: modu ...

  2. Vue项目启动报错解决

    Vue项目启动报错解决 一.切换镜像 切换为淘宝镜像:npm config set registry https://registry.npm.taobao.org 检测镜像是否切换成功:npm co ...

  3. vue 项目打包报错 CSS minification error

    vue 项目打包报错 Error: CSS minification error: Lexical error 错误: CSS minification error: Lexical error on ...

  4. vue 项目运行报错 multiple chunks emit assts to the same filename js/401.js(chunks 401 and 401)

    VUE项目运行报这个错误也没有说哪里有错误,只说有名字冲突,整个项目搜下来都没发现有相同的名字,百度也没人说.自己摸索的解决掉了.有两种情况. 情况一:如果是添加路由的时候就报这个错 解决办法: 把c ...

  5. 第一次使用VSCode创建vue项目(报错大全)

    目录 在VSCode中创建一个vue项目 第一步下载node 第二步在VSCode中下载npm 报错 使用npm安装TypeScript 执行js文件 第三步创建一个vue项目 报错 使用npm安装v ...

  6. vue项目运行报错 node_modules/.bin/vue-cli-service: Permission denied

    vue项目运行 npm run serve 报错 sh: /Users/wang/WebstormProjects/test_web/node_modules/.bin/vue-cli-service ...

  7. Vue基础Day_01学习+Vue项目创建报错(true` in `“vueCompilerOptions“` property)解决方案

    Vue_Study01 1.Vue是什么? 1.1-Vue怎么学 Vue是在工程化的环境下进行学习的 1.2-Vue开发方式 1.3-Vue脚手架项目创建 目录 1.x-创建工程文件报错解决方案 注意 ...

  8. 创建Vue项目把报错Error: command failed: yarn

    ERROR Error: command failed: yarn bug现象 原因 新建Vue项目,在新建过程中,报错 解决方案 更改项目创建时的包管理器 步骤 进入到Windows环境中C:/us ...

  9. Vue项目启动报错 error:cannot find module xxx

    原因:无法找到项目依赖的某个模块 解决办法: 1.删掉存放模块的文件夹node_module: 2.执行清除缓存命令 npm cache clean: 如果报错,使用强制清除npm cache cle ...

最新文章

  1. 成人高考 计算机英语作文,2018年成人高考英语作文范文六篇
  2. 结构体是否有默认的构造函数?(没有,如果需要,需要自己写)
  3. python 安装包时出现红字_Python安装(Windows 7 8 10)
  4. Boost:顺序一致性的测试程序
  5. Uncaught SyntaxError: Unexpected token in body onload
  6. 全志A33-修改linux kernel启动参数
  7. 关于Java抽象类,接口与实现接口及派生类继承基类
  8. Java 8 Friday Goodies:Lambda和SQL
  9. 面试题(C++09:Autodesk)
  10. pytorch 中nn.MaxPool1d() 和nn.MaxPool2d()对比;nn.functional.max_pool1d
  11. 讯联智付:用户绑卡时“被签订”代扣协议 成借贷平台乱收费“帮凶”
  12. 修改计算机设备管理器信息,电脑硬件信息更改器(牛B硬件信息修改大师)
  13. 手把手教物体检测——M2Det
  14. 【C++学习五】STL库的应用
  15. 全网最全的AItium Designer 16下载资源与安装步骤
  16. 凭什么?80后合伙人“叫板Excel”
  17. 程序员学算法必备网站之一:VisuAlgo
  18. 浏览器禁用cookies_禁用Cookie功能的方法
  19. 【数学建模】常见的数学建模比赛汇总(参考资料)
  20. android 日志打印内容完全相同,Log的chatty机制,identical 391 lines

热门文章

  1. 不接电话会让你的备案号注销(附:网站备案电话查询)
  2. 计算机二级证书是什么类型,国家计算机二级是什么证书?
  3. css背景图不失真_CSS背景background图片
  4. mysql mysqli的使用
  5. 关于RuoYi自动代码生成功能的使用
  6. 形状模式与路径查找器
  7. 从智造中来到智造中去,施耐德电气既是“懂行人”也是“领路人”
  8. 华为云大数据轻量级解决方案,让数据“慧”说话
  9. scikit-learn工具包中分类模型predict_proba、predict、decision_function用法详解
  10. ngrok搭建服务器(超级详细)