// #ifndef VUE3 import Vue from 'vue' import './uni.promisify.adaptor' import "uview-plus/index.scss"; Vue.config.productionTip = false App.mpType = 'app' const app = new Vue({ ...App }) app.$mount() // #endif /
以下是一个简单的uView-plus表单校验示例: vue <template> <view> <u-form :model="form" ref="uFormRef" :rules="rules"> <u-form-item label="姓名" prop="name"> <u-input v-model="form.name" /> </u-form-item> <u-form-item label="...
feat: toast 组件支持遮掩层穿透#417 eb65e88 510aacf File tree src pages/componentsB/toast toast.nvue uni_modules/uview-plus/components/u-toast u-toast.vue 2 files changed +7 -5 lines changed src/pages/componentsB/toast/toast.nvue ...
u-tabs-item u-tabs-item.vue u-tabs u-tabs.vue u-tag u-tag.vue u-td u-td.vue u-text u-text.vue u-textarea u-textarea.vue u-toast u-toast.vue u-toolbar u-toolbar.vue u-tooltip u-tooltip.vue u-tr u-tr.vue u-transition u-transition.vue u-upload mixin.js...
unpackage util .editorconfig .eslintignore .eslintrc.js .gitignore App.vue LICENSE README.md index.html main.js manifest.json package-lock.json package.json pages.json tree.md uni.scss Latest commit jry vue3 version Jul 9, 2022 fb317af·Jul 9, 2022 ...
3.x 1 parent c55420e commit 03ba7fd File tree src pages/componentsC/tabs tabs.nvue uni_modules/uview-plus/components u-slider u-slider.vue u-tabs u-tabs.vue3 files changed +38 -23lines changedsrc/pages/componentsC/tabs/tabs.nvue +27-13 ...
import { ref } from 'vue' import type { UniFormRef } from '@/uni_modules/uview-plus/types' const form1 = ref<UniFormRef|null>(null) </template> import { ref } from 'vue' import type { UniFormRef } from '@/uni_modules/uview-plus/types' const form1 = ref<UniFormRef|null>(nul...
"navigationBarTitleText": "Tabbar-vue" } }, { "path": "waterfall/waterfall", "style": { 8 changes: 7 additions & 1 deletion 8 src/pages/componentsB/tabbar/tabbar.nvue Original file line numberDiff line numberDiff line change @@ -195,7 +195,8 @@ :placeholder="true" :safeAreaInset...
this.$refs.uToast.success(`点击了第${name}个`) 177+ this.$refs.uToastRef.success(`点击了第${name}个`) 178178 } 179179 } 180180 } uni_modules/uview-plus/components/u-grid/u-grid.vue +1 0commit comments Comments 0(0)
uview-ui/components/u-tabbar/u-tabbar.vueCopy file name to clipboard +226-4Lines changed: 226 additions & 4 deletions Original file line numberDiff line numberDiff line change @@ -1,24 +1,246 @@ 1 1 <template> 2 - <view class="u-tabbar"> 3 - 2 + <view v-if="show...