logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

rsync exited with code 255.Load key “...“: invalid format Permission denied, please try again.

在配置自动部署前端项目到服务器上时,登录服务器使用的是秘钥登录。在开头把问题关键说一下:秘钥格式不对!

#服务器#运维#linux +1
使用pyenv安装python缓慢或无法安装

可以去 https://www.python.org/ftp/python/ ,选择你选择的版本进行下载,例如我下载了 python-3.10.4-amd64.exe。将刚刚下载下来的 python-3.10.4-amd64.exe 移动到开始提到过的。命令检查 pyenv 能够安装和管理的版本,一定要选择其中的版本才行。下载,和手动下载后放到这个文件夹其实没有本质区别,只是最后安装步骤由。上面只

文章图片
#python#开发语言
If this is a native custom element, ...... via compilerOptions.CustomElement.

报错信息是这个,标题字数限制放不完If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.这错误是我好久没写VUE,重写的时候发现的,这时候我已经忘记了,自己写了一个组件,导入到父组件时候的导入规则,所以我是这样

#vue.js#javascript#前端
Eslint太烦了,怎么关,想用但是不想看见红色波浪怎么办

在配置文件vue.config.js里面添加这个module.exports = defineConfig({lintOnSave: false})如果没有这个文件自己建一个,有文件但是没有lintOnSave: false这句话的补一句就OK了如果要用Eslint,但是写一句就给你打红色波浪怎么办:在VS code 的设置里面,搜eslint,把他的enable勾选取消就不会总是画波浪线,但是运

#vue.js#javascript#前端
[Vue warn]: Component is missing template or render function.

从组件库导入组件的时候,要用{ }括起来例如import {NButton} from "naive-ui";如果这样import NButton from "naive-ui";那么就会报错Component is missing template or render function.

#vue.js#前端#javascript
v-model argument is not supported on plain elements 和 ‘v-model‘ directives require no argument.

好久没写VUE,再写的时候踩了个小坑:<input type=“text” v-model:value="value"/>如果你开启了Eslint , 报错应该是'v-model' directives require no argument.我去查了下,大概说的是是eslint对vetur插件的检查出现的问题。但其实根本不是,如果你关闭了Eslint,会发现仍然报错:VueCompi

#javascript#vue.js#前端
向Vue的prototype上绑定或.use()时Cannot read properties of undefined (reading ‘prototype‘)

使用cli3创建的项目,main中的语法是:import Vue from 'vue';import ElementUI from 'element-ui';import 'element-ui/lib/theme-chalk/index.css';import App from './App.vue';import localData from "../src/assets/js/local"n

#vue.js#javascript
module not found: error: can‘t resolve ‘@vue/composition-api‘ in + 路径

这个问题主要是,没安装@vue/composition-api为插件,一般更改就行了:npm install @vue/composition-api或者yarn add @vue/composition-api用NPM很可能会error,原因我猜是VUE的版本问题,但yarn应该能正常下载。...

#vue.js#前端#javascript
VUE项目运行报错Syntax Error: Cannot find module ‘./utils‘

大概率是依赖出了点儿问题,把modules文件夹全删了,然后在项目目录里面把终端打开,运行下面命令:npm i或者运行npm install上面那个命令就是下面这个的缩写,这个指令会根据你项目的配置文件中,dependencies这个配置下,所记录的依赖,来一一下载。大概只要报错找不到依赖之类的,都可以试试这个方法。...

VUE : Uncaught (in promise) TypeError: dataOptions.call is not a function

哟西。今天遇到一个问题,使用VUE3的时候,由路由链接到一个页面的时候,报错Uncaught (in promise) TypeError: dataOptions.call is not a function,上面还有两个data options的警告。报错的英文意思看着是,data的回调必须是一个函数。起初我以为是我页面的 data 不是函数形式:export default{// 应该是这样

#vue.js#javascript#前端
    共 25 条
  • 1
  • 2
  • 3
  • 请选择