摘要:
vue相关配置 1、scss配置 // 安装命令 npm install sass-loader sass -D // vite.config.js文件 css: { // css预处理器 preprocessorOptions: { scss: { // 引入 mixin.scss 这样就可以在全 阅读全文
摘要:
nvm list 查看已经安装的版本nvm list installed 查看已经安装的版本nvm list available 查看网络可以安装的版本nvm version 查看当前的版本nvm install 安装最新版本nvm nvm use <version> ## 切换使用指定的版本nod 阅读全文
摘要:
// 引入three.js import * as THREE from 'three'; import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'; // export const threeDimen 阅读全文
摘要:
x 左右 y 上下 z 前后 const model = new THREE.Group(); // 创建边界框可视化辅助对象,颜色为黄色 const box = new THREE.Box3().setFromObject(模型); const helper = new THREE.Box3Hel 阅读全文
摘要:
1.需要创建场景 // 创建场景 const scene = new THREE.Scene(); 2.创建相机 // 创建相机 const camera = new THREE.PerspectiveCamera() // 相机的位置 camera.position.z = 18 camera.p 阅读全文
摘要:
nvm -v 查看当前版本nvm --config nvm list 查看已安装node版本列表nvm install 版本号 下载对应node版本nvm use 版本号 切换node版本nvm on 开启nvmnvm off 关闭nvm 一、在cmd控制台进行操作 nvm 查询版本号 查询可以下载 阅读全文
摘要:
axios.post('xxx', { responseType: 'blob' //指定返回数据的格式为blob }) .then(response => { console.log(response);//把response打出来,看下图 let url = window.URL.createO 阅读全文
摘要:
报错内容 npm i element-ui -S npm ERR! code ERESOLVE npm ERR! ERESOLVE could not resolve npm ERR! npm ERR! While resolving: undefined@undefined npm ERR! Fo 阅读全文
摘要:
下载文件1、弹窗组件 <template> <view class="bombFrame" v-if="bshow" :class="show?'show':'hide'"> <view class="telate" :class="show?'bshow':'bhide'"> <view clas 阅读全文
摘要:
mixins:[] 局部混入 混入模板 export default { data() { return { } }, onLoad() { console.log("111") }, methods: { } } 所引入文件 <template> <view> </view> </template 阅读全文