随身笔记
随身笔记

前端资源

前端资源

一个手机的短信转发到另一个手机上

短信转发  该方法只对安卓有效 1,先下载,短信转发.prf.xml xml下载 https://gist.github.com/codexss/3bf7369e7ef40372f5ea93b26692141b   2,下载,Tasker.5.14.7.apk 链接: https://pan.baidu.com/s/1v__ntkeZ88i…

   699   2021-12-19   去围观

解决:Error: Cannot find module 'vue-loader-v16/package.json'

安装:npm i --save-dev vue-loader-v16 修改:babble.config.js module.exports = { presets: ["@vue/cli-plugin-babel/preset"],}; https://stackoverflow.com/questions/63504594/error-cannot-find-module-vue-loader-v16-package-json

   946   2021-12-17   去围观

解决:Vue received a Component which was made a reactive object. This can lead to unnecessary performance overhead, and should be avoided by marking the component with `markRaw` or using `shallowRef` instead of `ref`

解决:这问题在vue3才会出现 不能把变量写在data里面,要写在setup函数中,并return import { Search } from '@element-plus/icons' data(){ return{ Search } }, 改成 import { Search } from '@element-plus/icons' setup(props,…

   4,922   2021-11-29   去围观

vue3 No match found for location with path "/"

仔细检查你的路由配置文件,我这里是name字段重名,也有可能是哪里单词写错也可能造成 const routes = [ { path: '/', name: 'Home', component: Home }, { path: '/about', name: 'About', // route level code-splitting …

   5,922   2021-11-28   去围观

canvas插件fabric.js

Fabric.js 是一个强大而简单的 Javascript HTML5 画布库 Fabric 在画布元素之上提供交互式对象模型 Fabric 还具有 SVG-to-canvas(和 canvas-to-SVG)解析器   一、安装 yarn add fabric -S #or npm i fabric -S 也可以在 官网 下载最新 js 文件,通…

   827   2021-11-26   去围观
加载更多