摘要:
1. vuedraggable官方文档地址:https://www.itxst.com/vue-draggable/j6vzfv6r.html 在线示例https://sortablejs.github.io/Vue.Draggable/#/two-list-headerslots Vue3 DnD 阅读全文
摘要:
// 腾讯坐标转百度坐标 export const txMapToBdMap = (lng, lat) => { const x_pi = (3.14159265358979324 * 3000.0) / 180.0 const x = lng const y = lat const z = Mat 阅读全文
摘要:
组件中 <component :is="IndexRight" @enterStreet="enterStreet" /> setup 中 const componentsLeftData = reactive({ swiper: markRaw(defineAsyncComponent(() => 阅读全文
摘要:
<template> <div id="drag"> <div id="drag-box" class="drag-box" draggable="true" :style="{ top, left }" @dragstart.stop="onDragstart" @drag.stop="onDra 阅读全文
摘要:
onMounted(() => { const box = document.getElementById('gantt-box') let flag, downX, downY, scrollLeft, scrollTop box.addEventListener('mousedown', fun 阅读全文
摘要:
<template> <div style="width: 696px; height: 800px; position: relative"> <swiper :slides-per-view="2.5" :loop="true" :watch-slides-progress="true" :ce 阅读全文
摘要:
安装vite插件库 npm i vite-plugin-pages vite-plugin-vue-layouts -D vite-plugin-pages 这俩是 vite 的插件,并且仅支持 Vue3 安装完成后在vite.config里面配置一下插件 官方文档 https://github.c 阅读全文
摘要:
什么是类数组,一开始我是懵逼的,直到我要学习ts才知道类数组这个东西 类数组:是一种相似数组的对象,并提供了一种用于访问原始二进制数据的机制,但不是真正的数组。js 中类数组对象有不少,例如arguments、 NodeList、 HTMLCollection、 jQuery等 类数组拥有的特性 l 阅读全文