uni-app icon indicating copy to clipboard operation
uni-app copied to clipboard

A cross-platform framework using Vue.js

Results 519 uni-app issues
Sort by recently updated
recently updated
newest added

报错信息: ```txt Error: Cannot find module 'vuex/package.json' Require stack: - 当前项目路径/node_modules/.pnpm/@[email protected]_@[email protected][email protected][email protected]_rzxhs7gpnzk4ytytzonhc33jty/node_modules/@dcloudio/uni-cli-shared/dist/resolve.js - 当前项目路径/node_modules/.pnpm/@[email protected]_@[email protected][email protected][email protected]_rzxhs7gpnzk4ytytzonhc33jty/node_modules/@dcloudio/uni-cli-shared/dist/hbx/env.js - 当前项目路径/node_modules/.pnpm/@[email protected]_@[email protected][email protected][email protected]_rzxhs7gpnzk4ytytzonhc33jty/node_modules/@dcloudio/uni-cli-shared/dist/hbx/index.js - 当前项目路径/node_modules/.pnpm/@[email protected]_@[email protected][email protected][email protected]_rzxhs7gpnzk4ytytzonhc33jty/node_modules/@dcloudio/uni-cli-shared/dist/utils.js - 当前项目路径/node_modules/.pnpm/@[email protected]_@[email protected][email protected][email protected]_rzxhs7gpnzk4ytytzonhc33jty/node_modules/@dcloudio/uni-cli-shared/dist/mp/ast.js - 当前项目路径/node_modules/.pnpm/@[email protected]_@[email protected][email protected][email protected]_rzxhs7gpnzk4ytytzonhc33jty/node_modules/@dcloudio/uni-cli-shared/dist/mp/index.js - 当前项目路径/node_modules/.pnpm/@[email protected]_@[email protected][email protected][email protected]_rzxhs7gpnzk4ytytzonhc33jty/node_modules/@dcloudio/uni-cli-shared/dist/index.js - 当前项目路径/node_modules/.pnpm/@[email protected]_@[email protected][email protected]_typescript@4._crphgclmu3iqau2a7xw2aejlaa/node_modules/@dcloudio/vite-plugin-uni/dist/index.js - 当前项目路径/vite.config.ts - 当前项目路径/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-whKeNLxG.js at...

vue3
不明确复现步骤、未提供复现工程
不明确 vue版本或者运行平台

给了动态插槽后,同时还是作用域插槽,父组件拿不到作用域插槽的值 子组件代码: {{ item.title }} : {{ dataItem[item.prop] === 0 ? "0" : dataItem[item.prop] || "-" }} 父组件代码: 123 --{{ item }} const cardConfigHelp = reactive({ columns: [ { title:...

``` js import { computed, defineComponent } from "vue"; export default defineComponent({ props: { size: { type: Number, default: 24, }, }, setup(props, { attrs, slots }) { const myClass...

官方文档uni.createPushMessage(OBJECT)中有参数icon 关于通知栏,我发现: 一个规律,通知栏图标分为“3”个图标, 1:以当前应用名左边的一个图标,这个在通知栏位置最靠上。(小图) 2:当前应用有多个通知时,每个通知最左侧的图标(小图) 2:当前应用只有一个通知时,当前应用通知栏最右侧的图标(大图) 其中“2”和“3”都是我们自定义的这个icon,只是尺寸不同,但是“1”则没有配置参数

app
uniapp功能需求

uni.openLocation 浏览器不会打开新页面。会在原页面调用地图组件遮盖,这样使用浏览器自带返回按钮导致路由变化,页面始终被地图组件遮盖要怎么解决

无后续反馈将自动关闭
地图问题
咨询

**问题描述** 二次封装组件后, 组件的父子结构, 在微信小程序和H5下, 表现不一致 ### 基础情况: 有c-form, c-form-item两个基础组件, c-form-item需要通过parent向上查找, 找到c-form组件 在此基础上, 有n-form, n-form-item两个组件, 分别对上面两个组件进行封装 下面有重现的repo, 以上4个组件, 都没有功能代码, 只是单纯的结构问题 ### 输出此结构树: H5: ![image](https://github.com/dcloudio/uni-app/assets/7044628/ced08e22-796e-41e2-a77e-8af016060298) 微信小程序: ![image](https://github.com/dcloudio/uni-app/assets/7044628/cb18e405-8f72-4e34-9ede-d4addf6104fe) H5上会多有View等组件, 我们忽略, 只关心上面四个组件, 可以看到, 在微信小程序上,...

小程序编译后的JS vender.js rget,e.detail)),e}(e);var r=(e.currentTarget||e.target).dataset;if(!r)return console.warn("事件信息不存在");var n=r.eventOpts||r["event-opts"];if(!n)return console.warn("事件信息不存在");var i=e.type,o=[];return n.forEach((function(r){var n=r[0],a=r[1],c="^"===n.charAt(0);n=c?n.slice(1):n;var u="~"===n.charAt(0);n=u?n.slice(1):n,a&&function(e,t){return e===t||"regionchange"===t&&("begin"===e||"end"===e)} 未混淆的代码 vender.js `function handleEvent(event) { var _this3 = this; event = wrapper$1(event); // [['tap',[['handle',[1,2,a]],['handle1',[1,2,a]]]]] var dataset = (event.currentTarget...

mp
不明确复现步骤、未提供复现工程

**新功能描述** 在 vscode 中打开 nvue 文件没有相关支持 **现状及问题** 使用 file associate 将 nvue 关联至 vue 之后,页面上会有大量报错 ![image](https://user-images.githubusercontent.com/16068816/106686469-4a28f580-6605-11eb-9479-e85d1e7ddf70.png) 如果将 nvue 文件关联至 html 文件,可以解决报错问题。 但是这不是我们想要的完美效果,并且 vscode 的 ts 检查会报错。 希望后续可以改进

enhancement
app
doubleCheck

需要通过微信app打开一个webview的H5页面,并且向这个H5页面传送值,看到了很多方法,但是都没有成功过,目前微信app是基于vue3, H5是基于vue2. 微信app ``` import { reactive ,ref,watch,nextTick,getCurrentInstance} from 'vue' import { onShow, onLoad,onReachBottom} from '@dcloudio/uni-app' const url = ref('http://localhost:5175?id=adflkaj') const webviewRef = ref(); const webviewStyles={ progress: { color: '#FF3333'...

mp
h5
等待用户反馈
咨询