热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

vue手风琴_简单流畅的Vue手风琴

vue手风琴Vue常见问题手风琴(vue-faq-accordion)Simpleandsmoothvueaccordion.PerfectforyourFAQsection.简单

vue 手风琴

Vue常见问题手风琴 (vue-faq-accordion)

Simple and smooth vue accordion. Perfect for your FAQ section.

简单流畅的vue手风琴。 非常适合您的常见问题解答部分。

View demo 查看演示 Download Source 下载源
vue-faq-accordion

安装 (Install)

npm i vue-faq-accordion
yarn add vue-faq-accordion

🚀用法 (🚀 Usage)

⚙道具 (⚙ Props)

props: {/*** Array of items* Object style {questionProperty: string, answerProperty: string, tabName: string}* You can change object keys names using other props (questionProperty, answerProperty, tabName)*/items: {type: Array,required: true},/*** Key name of object in items array for specifying title of question*/questionProperty: {type: String,default: 'title'},/*** Key name of object in items array for specifying content text of open question*/answerProperty: {type: String,default: 'value'},/*** Key name of object in items array for specifying navigation tab name*/tabName: {type: String,default: 'category'},/*** Color for hover and active tab/question* possible format: 'red', '#F00', 'rgba(255, 0, 0, 1)'*/activeColor: {type: String,default: '#D50000'},/*** Color for borders*/borderColor: {type: String,default: '#9E9E9E'},/*** Color for fonts*/fontColor: {type: String,default: '#000000'}}

翻译自: https://vuejsexamples.com/simple-and-smooth-vue-accordion/

vue 手风琴



推荐阅读
author-avatar
天王2502871933
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有