taro-ui-vue3
taro-ui-vue3 copied to clipboard
采用 Vue 3.0 重写的 Taro UI 组件库
https://gitee.com/mallfoundry/taroify
Bumps [vm2](https://github.com/patriksimek/vm2) from 3.9.3 to 3.9.5. Release notes Sourced from vm2's releases. 3.9.5 New Features d9af94ca3a701b9ba6283264fafeef4827786702: Added editor config Fixes 4f0db94bfa250089d903083fcd6c6cf6cd11b8a9: Fix Promise.then not working 419806086ccbef7b9f11abbd8420d01d9fe6d18c: Fix for missing CallSite...
Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.5.1 to 1.5.3. Commits ad44493 [dist] 1.5.3 c798461 [fix] Fix host parsing for file URLs (#210) 201034b [dist] 1.5.2 2d9ac2c [fix] Sanitize only special URLs (#209) fb128af...
Bumps [tar](https://github.com/npm/node-tar) from 4.4.13 to 4.4.19. Commits 9a6faa0 4.4.19 70ef812 drop dirCache for symlink on all platforms 3e35515 4.4.18 52b09e3 fix: prevent path escape using drive-relative paths bb93ba2 fix: reserve...
app.js中引入 import { createUI } from 'taro-ui-vue3' npm run dev:dd 的时候报错 " '@tarojs/components' does not contain an export named 'OpenData'.
#### 问题描述 组件AtRange小程序模拟器/真机演示不能拖动选择的问题: const rangeVal = reactive({ arr: [0, 0] }) const rangeChange = (val) => { console.log(rangeVal.arr) console.log('----------------------') console.log(val) } #### 版本信息 #### 涉及的平台 #### 错误信息 ```bash // error...
鉴于本人精力有限,将停止对 taro-ui-vue3 的维护。 对于正在准备使用 `taro-ui-vue3` 练手的同学,推荐各位移步 [京东团队的 NutUI](https://github.com/jdf2e/nutui),该 UI 现已适配 Taro,直接在 Taro Cli 新建项目时选用即可。 `taro-ui-vue3` 最初是为了了解和学习 Vue 3.0 和 Taro 3.0 而写,从首个 Commit 开始,到现在差不多历时一年时间。在这段期间,陆陆续续浅显地了解了 React 和 Vue 3.0 的差异、Vue 3.0...
#### 问题描述 想要使用taro-ui-vue3中的AtTabBar作为小程序的自定义tabbar #### 版本信息 v^1.0.0-alpha.21 #### 涉及的平台 weapp #### 错误信息 按照文档定义后 tabbar不显示
#### 问题描述 使用 **VirtualScroll** 组件生成虚拟列表时,设置了 `itemHeight` 属性后,计算生成的容器总高度和子项偏移高度单位都为px,不会自动转换 #### 版本信息 1.0.0-alpha.21 #### 涉及的平台 weapp #### 错误信息 // error message here  #### 代码 小程序用以下方式修复后可以设置正确当前页和子项的高度,在内联样式中将高度转换为了对应的px, 但是在滚动时计算会出错,应该是获取到的scrollTop值有误 ```ts // packages/virtual-scroll/index.ts // line-116 const...
如需按需引用组件,请从 `taro-ui-vue3/lib` 目录中引用。 样式按需引用,仍需从 `taro-ui-vue3/dist/style` 目录中引用。 ## 方式一 ```ts import { AtButton } from 'taro-ui-vue3/lib' import "taro-ui-vue3/dist/style/components/button.scss" ``` ## 方式二 - 在 webpack 配置中,将 `taro-ui-vue3` 的 alias 指向 `taro-ui-vue3/lib` ```ts...