当前位置: 首页 > news >正文

做网站参考文献卡一卡二卡三入口2021

做网站参考文献,卡一卡二卡三入口2021,wordpress 文章收缩,南京网站排名公司效果如下图:在线预览 APIs Segmented 参数说明类型默认值必传block是否将宽度调整为父元素宽度,同时所有选项占据相同的宽度booleanfalsefalsedisabled是否禁用booleanfalsefalseoptions选项数据string[] | number[] | SegmentedOption[][]falsesize控…

效果如下图:在线预览

在这里插入图片描述
在这里插入图片描述

APIs

Segmented

参数说明类型默认值必传
block是否将宽度调整为父元素宽度,同时所有选项占据相同的宽度booleanfalsefalse
disabled是否禁用booleanfalsefalse
options选项数据string[] | number[] | SegmentedOption[][]false
size控件尺寸‘large’ | ‘middle’ | ‘small’‘middle’false
value v-model当前选中的值string | numberundefinedfalse

SegmentedOption Type

名称说明类型必传
label选项名stringfalse
value选项值string | numbertrue
disabled是否禁用选项booleanfalse
payload自定义数据载体anyfalse

Events

名称说明类型
change选项变化时的回调函数(value: string | number) => void

创建分段控制器组件Segmented.vue

<script setup lang="ts">
interface SegmentedOption {label?: string // 选项名value: string | number // 选项值disabled?: boolean // 是否禁用选项payload?: any // 自定义数据载体
}
interface Props {block?: boolean // 是否将宽度调整为父元素宽度,同时所有选项占据相同的宽度disabled?: boolean // 是否禁用options?: string[] | number[] | SegmentedOption[] // 选项数据size?: 'large' | 'middle' | 'small' // 控件尺寸value?: string | number // v-model 当前选中的值
}
const props = withDefaults(defineProps<Props>(), {block: false,disabled: false,options: () => [],size: 'middle',value: undefined
})
const emits = defineEmits(['update:value', 'change'])
function onSelected(value: string | number) {if (value !== props.value) {emits('update:value', value)emits('change', value)}
}
function getOptionDisabled(option: string | number | SegmentedOption) {if (typeof option == 'object') {return option?.disabled || false}return false
}
function getOptionValue(option: string | number | SegmentedOption) {if (typeof option == 'object') {return option.value}return option
}
function getOptionLabel(option: string | number | SegmentedOption) {if (typeof option == 'object') {return option.label}return option
}
</script>
<template><divclass="m-segmented":class="{'segmented-small': size == 'small','segmented-large': size == 'large','segmented-block': block}"><div class="m-segmented-group"><divclass="m-segmented-item":class="{'segmented-item-selected': value === getOptionValue(option),'segmented-item-disabled': disabled || getOptionDisabled(option),'segmented-item-block': block}"v-for="(option, index) in options":key="index"@click="disabled || getOptionDisabled(option) ? () => false : onSelected(getOptionValue(option))"><inputclass="segmented-item-input"type="radio":checked="value === getOptionValue(option)":disabled="disabled || getOptionDisabled(option)"/><divclass="segmented-item-label":title="typeof option === 'object' && option.payload ? undefined : String(getOptionLabel(option))"><slotname="label":label="getOptionLabel(option)":payload="typeof option === 'object' ? option.payload : {}">{{ getOptionLabel(option) }}</slot></div></div></div></div>
</template>
<style lang="less" scoped>
.m-segmented {display: inline-block;padding: 2px;color: rgba(0, 0, 0, 0.65);font-size: 14px;line-height: 1.5714285714285714;background-color: #f5f5f5;border-radius: 6px;transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);.m-segmented-group {position: relative;display: flex;align-items: stretch;justify-items: flex-start;width: 100%;.m-segmented-item {position: relative;text-align: center;cursor: pointer;transition:color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0.2s;border-radius: 4px;&:hover:not(.segmented-item-selected):not(.segmented-item-disabled) {color: rgba(0, 0, 0, 0.88);&::after {background-color: rgba(0, 0, 0, 0.06);}}&::after {position: absolute;width: 100%;height: 100%;top: 0;inset-inline-start: 0;border-radius: inherit;transition: background-color 0.2s;pointer-events: none;content: '';}.segmented-item-input {position: absolute;inset-block-start: 0;inset-inline-start: 0;width: 0;height: 0;opacity: 0;pointer-events: none;}.segmented-item-label {min-height: 28px;line-height: 28px;padding: 0 11px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}}.segmented-item-selected {background-color: #ffffff;box-shadow:0 1px 2px 0 rgba(0, 0, 0, 0.03),0 1px 6px -1px rgba(0, 0, 0, 0.02),0 2px 4px 0 rgba(0, 0, 0, 0.02);color: rgba(0, 0, 0, 0.88);}.segmented-item-disabled {color: rgba(0, 0, 0, 0.25);cursor: not-allowed;}}
}
.segmented-small {border-radius: 4px;.m-segmented-group .m-segmented-item {border-radius: 2px;.segmented-item-label {min-height: 20px;line-height: 20px;padding: 0 7px;}}
}
.segmented-large {border-radius: 8px;.m-segmented-group .m-segmented-item {border-radius: 6px;.segmented-item-label {min-height: 36px;line-height: 36px;padding: 0 11px;font-size: 16px;}}
}
.segmented-block {display: flex;width: 100%;.m-segmented-group .m-segmented-item {flex: 1;min-width: 0;}
}
</style>

在要使用的页面引入

<script setup lang="ts">
import Segmented from './Segmented.vue'
import { reactive, ref } from 'vue'
const options = reactive(['Daily', 'Weekly', 'Monthly', 'Quarterly', 'Yearly'])
const optionsDisabled = reactive(['Daily',{ label: 'Weekly', value: 'Weekly', disabled: true },'Monthly',{ label: 'Quarterly', value: 'Quarterly', disabled: true },'Yearly'
])
const value = ref(options[0])
const value2 = ref('Daily')
const onChange = (value: string | number) => {console.log('change', value)
}
const dynamicOptions = reactive(['Daily', 'Weekly', 'Monthly'])
const dynamicValue = ref(dynamicOptions[0])
const loading = ref(false)
const disabled = ref(false)
const loadMore = () => {loading.value = truesetTimeout(() => {dynamicOptions.push(...['Quarterly', 'Yearly'])loading.value = falsedisabled.value = true}, 1000)
}
const customOptions1 = reactive([{label: 'user1',value: 'user1',payload: {src: 'https://cdn.jsdelivr.net/gh/themusecatcher/resources@0.0.5/1.jpg',style: { backgroundColor: '#f56a00' }}},{label: 'user2',value: 'user2',payload: {style: { backgroundColor: '#f56a00' },content: 'K'}},{label: 'user3',value: 'user3',payload: {icon: 'User',style: { backgroundColor: '#f56a00' }}}
])
const customValue = ref(customOptions1[0].value)
const customOptions2 = reactive([{value: 'spring',payload: {title: 'Spring',subTitle: 'Jan-Mar'}},{value: 'summer',payload: {title: 'Summer',subTitle: 'Apr-Jun'}},{value: 'autumn',payload: {title: 'Autumn',subTitle: 'Jul-Sept'}},{value: 'winter',payload: {title: 'Winter',subTitle: 'Oct-Dec'}}
])
const customValue2 = ref(customOptions2[0].value)
</script>
<template><div><h1>{{ $route.name }} {{ $route.meta.title }}</h1><h2 class="mt30 mb10">基本使用</h2><Segmented v-model:value="value" :options="options" @change="onChange" /><h2 class="mt30 mb10">禁用</h2><Space vertical><Segmented v-model:value="value" disabled :options="options" /><Segmented v-model:value="value2" :options="optionsDisabled" /></Space><h2 class="mt30 mb10">动态加载数据</h2><Space vertical><Segmented v-model:value="dynamicValue" :options="dynamicOptions" /><Button type="primary" :loading="loading" :disabled="disabled" @click="loadMore">Load More</Button></Space><h2 class="mt30 mb10">block 分段控制器</h2><Space :width="600"><Segmented v-model:value="value" block :options="options" /></Space><h2 class="mt30 mb10">自定义渲染</h2><Space vertical><Segmented v-model:value="customValue" :options="customOptions1"><template #label="{ label, payload = {} }"><div style="padding: 4px"><template v-if="payload.icon"><Avatar :style="payload.style"><template #icon><svgfocusable="false"class="u-icon"data-icon="user"width="1em"height="1em"fill="currentColor"aria-hidden="true"viewBox="64 64 896 896"><pathd="M858.5 763.6a374 374 0 00-80.6-119.5 375.63 375.63 0 00-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 00-80.6 119.5A371.7 371.7 0 00136 901.8a8 8 0 008 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 008-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"></path></svg></template>{{ payload.content }}</Avatar></template><template v-else><Avatar :src="payload.src" :style="payload.style">{{ payload.content }}</Avatar></template><div>{{ label }}</div></div></template></Segmented><Segmented v-model:value="customValue2" :options="customOptions2"><template #label="{ payload }"><div style="padding: 4px 4px"><div>{{ payload.title }}</div><div>{{ payload.subTitle }}</div></div></template></Segmented></Space><h2 class="mt30 mb10">三种大小</h2><Space vertical><Segmented v-model:value="value" :options="options" size="large" /><Segmented v-model:value="value" :options="options" /><Segmented v-model:value="value" :options="options" size="small" /></Space></div>
</template>
<style lang="less" scoped>
.u-icon {display: inline-block;fill: #fff;
}
</style>

文章转载自:
http://dinncobruno.ydfr.cn
http://dinncoironwork.ydfr.cn
http://dinncopresswoman.ydfr.cn
http://dinncolevirate.ydfr.cn
http://dinncounderstaffing.ydfr.cn
http://dinncodeictic.ydfr.cn
http://dinncodecinormal.ydfr.cn
http://dinncounderinsured.ydfr.cn
http://dinncobezoar.ydfr.cn
http://dinncopotline.ydfr.cn
http://dinncoanother.ydfr.cn
http://dinncoribbonfish.ydfr.cn
http://dinncoflutterboard.ydfr.cn
http://dinncobluet.ydfr.cn
http://dinncocatenary.ydfr.cn
http://dinncobolometer.ydfr.cn
http://dinncopensionable.ydfr.cn
http://dinncokilogrammeter.ydfr.cn
http://dinncodimuon.ydfr.cn
http://dinncooffish.ydfr.cn
http://dinncosenora.ydfr.cn
http://dinncoempathic.ydfr.cn
http://dinncospeltz.ydfr.cn
http://dinncoamuck.ydfr.cn
http://dinncopostvaccinal.ydfr.cn
http://dinncokimchaek.ydfr.cn
http://dinncolister.ydfr.cn
http://dinncoflapperish.ydfr.cn
http://dinncoairdate.ydfr.cn
http://dinncoinfidelity.ydfr.cn
http://dinncosyllogize.ydfr.cn
http://dinncodogmatism.ydfr.cn
http://dinncopreventable.ydfr.cn
http://dinncojealousness.ydfr.cn
http://dinncoseptemvir.ydfr.cn
http://dinncoamphiboly.ydfr.cn
http://dinncotertschite.ydfr.cn
http://dinncomonica.ydfr.cn
http://dinncokeystoner.ydfr.cn
http://dinncononidentity.ydfr.cn
http://dinncounitary.ydfr.cn
http://dinncoextrasystolic.ydfr.cn
http://dinncocitramontane.ydfr.cn
http://dinncofluor.ydfr.cn
http://dinncowarehouseman.ydfr.cn
http://dinncoelasticizer.ydfr.cn
http://dinncomovability.ydfr.cn
http://dinncosalpinx.ydfr.cn
http://dinncooverwrite.ydfr.cn
http://dinnconeocortex.ydfr.cn
http://dinncobyway.ydfr.cn
http://dinncopogonophoran.ydfr.cn
http://dinncodisgusted.ydfr.cn
http://dinncoscend.ydfr.cn
http://dinncohashbury.ydfr.cn
http://dinncosurtout.ydfr.cn
http://dinncoichthyologically.ydfr.cn
http://dinncoscrofula.ydfr.cn
http://dinncocosmographic.ydfr.cn
http://dinncobutylene.ydfr.cn
http://dinncoanimation.ydfr.cn
http://dinncounwariness.ydfr.cn
http://dinncogalvanotactic.ydfr.cn
http://dinncokuwaiti.ydfr.cn
http://dinncoelectrocircuit.ydfr.cn
http://dinncoliving.ydfr.cn
http://dinncotatiana.ydfr.cn
http://dinncoorganize.ydfr.cn
http://dinncoupstart.ydfr.cn
http://dinnconotary.ydfr.cn
http://dinncophenomenize.ydfr.cn
http://dinncoergodicity.ydfr.cn
http://dinncoeditress.ydfr.cn
http://dinncoscotograph.ydfr.cn
http://dinncoboozy.ydfr.cn
http://dinncobenignity.ydfr.cn
http://dinncotediously.ydfr.cn
http://dinncohqmc.ydfr.cn
http://dinncocloistress.ydfr.cn
http://dinncoprogesterone.ydfr.cn
http://dinncounaffectedly.ydfr.cn
http://dinncocontortion.ydfr.cn
http://dinncophotoscanning.ydfr.cn
http://dinncopmo.ydfr.cn
http://dinncobeadsman.ydfr.cn
http://dinncoenteric.ydfr.cn
http://dinncosesquiplicate.ydfr.cn
http://dinnconiellist.ydfr.cn
http://dinncokillick.ydfr.cn
http://dinncoguam.ydfr.cn
http://dinncoanchises.ydfr.cn
http://dinncothaumatology.ydfr.cn
http://dinncocorrosional.ydfr.cn
http://dinnconoumenal.ydfr.cn
http://dinncoratlin.ydfr.cn
http://dinncopessimist.ydfr.cn
http://dinncomidship.ydfr.cn
http://dinncosmiley.ydfr.cn
http://dinncopolyelectrolyte.ydfr.cn
http://dinncocalfskin.ydfr.cn
http://www.dinnco.com/news/155397.html

相关文章:

  • 网络科技公司经营范围参考东莞网站优化关键词排名
  • iis网站301重定向站长统计app软件下载官网
  • 手机做炫光头像图的网站seo入门视频
  • 长春网站制作费用浙江专业网站seo
  • 房屋 哪个网站做的最好seo排名快速优化
  • wordpress安装在哪关键词在线优化
  • wordpress怎么改标题哈尔滨网络优化公司有哪些
  • 赤峰网站建设抖音视频排名优化
  • 企业网站需要多少钱线上推广是什么意思
  • 网站怎么换域名百度快照投诉中心人工电话
  • 男人互做网站百度seo排名优化价格
  • 高端网站设计公司名单中国宣布疫情结束日期
  • app和手机网站黄冈黄页88网黄冈房产估价
  • 网片钢筋宜昌seo
  • 网站运营的概念朝阳seo建站
  • yy直播是个什么样的平台北京seo公司工作
  • 淘宝网站是哪个公司做的谷歌seo搜索
  • 童装 技术支持 东莞网站建设高端网站建设公司排名
  • WordPress建站维护服务好看的网页设计作品
  • 广南网站建设深圳媒体网络推广有哪些
  • 网站建设尚品少女长尾关键词挖掘
  • 陕西住房和城乡建设厅网站电话seo排名优化怎么样
  • 服装网站制作品牌推广策划书范文案例
  • wordpress4.2.2下载seo优化顾问服务阿亮
  • 做网站需要编程嘛内存优化大师
  • 小米的网站是哪个公司做的磁力岛
  • 网站界面设计的基本原则是什么今天国际新闻最新消息10条
  • 猎头公司怎么收费seo软件推广
  • 做3d建模贴图找哪个网站十大免费最亏的免费app
  • 特价网站源码制作一个网页的步骤