在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → vue项目实例

vue项目实例

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.33M
  • 下载次数:76
  • 浏览次数:641
  • 发布时间:2021-02-06
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
新手学习vue的最佳demo实例,整合了vue的各类组件以及各种指令等等
【实例截图】
【核心代码】
24c8f2a7-92d5-47db-add4-f82986766b38
└── weiXinGongZhongHaoManageSystem
├── build
│   ├── build.js
│   ├── check-versions.js
│   ├── logo.png
│   ├── utils.js
│   ├── vue-loader.conf.js
│   ├── webpack.base.conf.js
│   ├── webpack.dev.conf.js
│   └── webpack.prod.conf.js
├── config
│   ├── dev.env.js
│   ├── index.js
│   ├── prod.env.js
│   └── sit.env.js
├── favicon.ico
├── index.html
├── LICENSE
├── package.json
├── README.md
├── README.zh-CN.md
├── src
│   ├── api
│   │   ├── article.js
│   │   ├── login.js
│   │   ├── qiniu.js
│   │   ├── remoteSearch.js
│   │   ├── sys-user.js
│   │   ├── transaction.js
│   │   ├── wx-account-fans.js
│   │   ├── wx-account.js
│   │   ├── wx-menu.js
│   │   ├── wx_receive_text.js
│   │   ├── wx_subscribe_text.js
│   │   └── wx-text-template.js
│   ├── App.vue
│   ├── assets
│   │   ├── 401_images
│   │   │   └── 401.gif
│   │   ├── 404_images
│   │   │   ├── 404_cloud.png
│   │   │   └── 404.png
│   │   └── custom-theme
│   │   ├── fonts
│   │   │   ├── element-icons.ttf
│   │   │   └── element-icons.woff
│   │   └── index.css
│   ├── components
│   │   ├── BackToTop
│   │   │   └── index.vue
│   │   ├── Breadcrumb
│   │   │   └── index.vue
│   │   ├── Charts
│   │   │   ├── keyboard.vue
│   │   │   ├── lineMarker.vue
│   │   │   ├── mixChart.vue
│   │   │   └── mixins
│   │   │   └── resize.js
│   │   ├── DndList
│   │   │   └── index.vue
│   │   ├── DragSelect
│   │   │   └── index.vue
│   │   ├── Dropzone
│   │   │   └── index.vue
│   │   ├── ErrorLog
│   │   │   └── index.vue
│   │   ├── GithubCorner
│   │   │   └── index.vue
│   │   ├── Hamburger
│   │   │   └── index.vue
│   │   ├── ImageCropper
│   │   │   ├── index.vue
│   │   │   └── utils
│   │   │   ├── data2blob.js
│   │   │   ├── effectRipple.js
│   │   │   ├── language.js
│   │   │   └── mimes.js
│   │   ├── JsonEditor
│   │   │   └── index.vue
│   │   ├── Kanban
│   │   │   └── index.vue
│   │   ├── LangSelect
│   │   │   └── index.vue
│   │   ├── MarkdownEditor
│   │   │   ├── defaultOptions.js
│   │   │   └── index.vue
│   │   ├── MDinput
│   │   │   └── index.vue
│   │   ├── Pagination
│   │   │   └── index.vue
│   │   ├── PanThumb
│   │   │   └── index.vue
│   │   ├── Screenfull
│   │   │   └── index.vue
│   │   ├── ScrollPane
│   │   │   └── index.vue
│   │   ├── Share
│   │   │   └── dropdownMenu.vue
│   │   ├── SizeSelect
│   │   │   └── index.vue
│   │   ├── Sticky
│   │   │   └── index.vue
│   │   ├── SvgIcon
│   │   │   └── index.vue
│   │   ├── TextHoverEffect
│   │   │   └── Mallki.vue
│   │   ├── ThemePicker
│   │   │   └── index.vue
│   │   ├── Tinymce
│   │   │   ├── components
│   │   │   │   └── editorImage.vue
│   │   │   ├── index.vue
│   │   │   ├── plugins.js
│   │   │   └── toolbar.js
│   │   ├── TreeTable
│   │   │   ├── eval.js
│   │   │   ├── index.vue
│   │   │   └── readme.md
│   │   ├── Upload
│   │   │   ├── singleImage2.vue
│   │   │   ├── singleImage3.vue
│   │   │   ├── singleImage.bak.vue
│   │   │   └── singleImage.vue
│   │   └── UploadExcel
│   │   └── index.vue
│   ├── directive
│   │   ├── clipboard
│   │   │   ├── clipboard.js
│   │   │   └── index.js
│   │   ├── el-dragDialog
│   │   │   ├── drag.js
│   │   │   └── index.js
│   │   ├── permission
│   │   │   ├── index.js
│   │   │   └── permission.js
│   │   ├── sticky.js
│   │   └── waves
│   │   ├── index.js
│   │   ├── waves.css
│   │   └── waves.js
│   ├── errorLog.js
│   ├── filters
│   │   └── index.js
│   ├── icons
│   │   ├── index.js
│   │   ├── svg
│   │   │   ├── 404.svg
│   │   │   ├── bug.svg
│   │   │   ├── chart.svg
│   │   │   ├── clipboard.svg
│   │   │   ├── component.svg
│   │   │   ├── dashboard.svg
│   │   │   ├── documentation.svg
│   │   │   ├── drag.svg
│   │   │   ├── edit.svg
│   │   │   ├── email.svg
│   │   │   ├── example.svg
│   │   │   ├── excel.svg
│   │   │   ├── eye.svg
│   │   │   ├── form.svg
│   │   │   ├── guide 2.svg
│   │   │   ├── guide.svg
│   │   │   ├── icon.svg
│   │   │   ├── international.svg
│   │   │   ├── language.svg
│   │   │   ├── link.svg
│   │   │   ├── list.svg
│   │   │   ├── lock.svg
│   │   │   ├── logout.svg
│   │   │   ├── message.svg
│   │   │   ├── money.svg
│   │   │   ├── nested.svg
│   │   │   ├── password.svg
│   │   │   ├── pdf.svg
│   │   │   ├── peoples.svg
│   │   │   ├── people.svg
│   │   │   ├── qq.svg
│   │   │   ├── shopping.svg
│   │   │   ├── size.svg
│   │   │   ├── star.svg
│   │   │   ├── table.svg
│   │   │   ├── tab.svg
│   │   │   ├── theme.svg
│   │   │   ├── tree.svg
│   │   │   ├── user.svg
│   │   │   ├── wechat.svg
│   │   │   └── zip.svg
│   │   └── svgo.yml
│   ├── lang
│   │   ├── en.js
│   │   ├── es.js
│   │   ├── index.js
│   │   └── zh.js
│   ├── main.js
│   ├── mock
│   │   ├── article.js
│   │   ├── index.js
│   │   ├── login.js
│   │   ├── remoteSearch.js
│   │   └── transaction.js
│   ├── permission.js
│   ├── router
│   │   ├── index.js
│   │   └── modules
│   │   ├── charts.js
│   │   ├── components.js
│   │   ├── nested.js
│   │   ├── sys-user-manage.js
│   │   ├── table.js
│   │   ├── wxmp-material-manage.js
│   │   └── wxmp-system-manage.js
│   ├── store
│   │   ├── getters.js
│   │   ├── index.js
│   │   └── modules
│   │   ├── app.js
│   │   ├── errorLog.js
│   │   ├── permission.js
│   │   ├── tagsView.js
│   │   └── user.js
│   ├── styles
│   │   ├── btn.scss
│   │   ├── element-ui.scss
│   │   ├── index.scss
│   │   ├── mixin.scss
│   │   ├── sidebar.scss
│   │   ├── transition.scss
│   │   └── variables.scss
│   ├── utils
│   │   ├── auth.js
│   │   ├── clipboard.js
│   │   ├── createUniqueString.js
│   │   ├── i18n.js
│   │   ├── index.js
│   │   ├── openWindow.js
│   │   ├── permission.js
│   │   ├── request.js
│   │   ├── scrollTo.js
│   │   └── validate.js
│   ├── vendor
│   │   ├── Export2Excel.js
│   │   └── Export2Zip.js
│   └── views
│   ├── charts
│   │   ├── keyboard.vue
│   │   ├── line.vue
│   │   └── mixChart.vue
│   ├── clipboard
│   │   └── index.vue
│   ├── components-demo
│   │   ├── avatarUpload.vue
│   │   ├── backToTop.vue
│   │   ├── countTo.vue
│   │   ├── dndList.vue
│   │   ├── dragDialog.vue
│   │   ├── dragKanban.vue
│   │   ├── dragSelect.vue
│   │   ├── dropzone.vue
│   │   ├── jsonEditor.vue
│   │   ├── markdown.vue
│   │   ├── mixin.vue
│   │   ├── splitpane.vue
│   │   ├── sticky.vue
│   │   └── tinymce.vue
│   ├── dashboard
│   │   ├── admin
│   │   │   ├── components
│   │   │   │   ├── BarChart.vue
│   │   │   │   ├── BoxCard.vue
│   │   │   │   ├── LineChart.vue
│   │   │   │   ├── PanelGroup.vue
│   │   │   │   ├── PieChart.vue
│   │   │   │   ├── RaddarChart.vue
│   │   │   │   ├── TodoList
│   │   │   │   │   ├── index.scss
│   │   │   │   │   ├── index.vue
│   │   │   │   │   └── Todo.vue
│   │   │   │   └── TransactionTable.vue
│   │   │   ├── index.bak.vue
│   │   │   └── index.vue
│   │   ├── editor
│   │   │   └── index.vue
│   │   └── index.vue
│   ├── documentation
│   │   └── index.vue
│   ├── errorLog
│   │   ├── errorTestA.vue
│   │   ├── errorTestB.vue
│   │   └── index.vue
│   ├── errorPage
│   │   ├── 401.vue
│   │   └── 404.vue
│   ├── example
│   │   ├── components
│   │   │   ├── ArticleDetail.vue
│   │   │   ├── Dropdown
│   │   │   │   ├── Comment.vue
│   │   │   │   ├── index.js
│   │   │   │   ├── Platform.vue
│   │   │   │   └── SourceUrl.vue
│   │   │   └── Warning.vue
│   │   ├── create.vue
│   │   ├── edit.vue
│   │   └── list.vue
│   ├── excel
│   │   ├── components
│   │   │   ├── AutoWidthOption.vue
│   │   │   ├── BookTypeOption.vue
│   │   │   └── FilenameOption.vue
│   │   ├── exportExcel.vue
│   │   ├── selectExcel.vue
│   │   └── uploadExcel.vue
│   ├── guide
│   │   ├── defineSteps.js
│   │   └── index.vue
│   ├── i18n-demo
│   │   ├── index.vue
│   │   └── local.js
│   ├── layout
│   │   ├── components
│   │   │   ├── AppMain.vue
│   │   │   ├── index.js
│   │   │   ├── Navbar.vue
│   │   │   ├── Sidebar
│   │   │   │   ├── FixiOSBug.js
│   │   │   │   ├── index.vue
│   │   │   │   ├── Item.vue
│   │   │   │   ├── Link.vue
│   │   │   │   └── SidebarItem.vue
│   │   │   └── TagsView.vue
│   │   ├── Layout.vue
│   │   └── mixin
│   │   └── ResizeHandler.js
│   ├── login
│   │   ├── authredirect.vue
│   │   ├── index.vue
│   │   └── socialsignin.vue
│   ├── nested
│   │   ├── menu1
│   │   │   ├── index.vue
│   │   │   ├── menu1-1
│   │   │   │   └── index.vue
│   │   │   ├── menu1-2
│   │   │   │   ├── index.vue
│   │   │   │   ├── menu1-2-1
│   │   │   │   │   └── index.vue
│   │   │   │   └── menu1-2-2
│   │   │   │   └── index.vue
│   │   │   └── menu1-3
│   │   │   └── index.vue
│   │   └── menu2
│   │   └── index.vue
│   ├── pdf
│   │   ├── content.js
│   │   ├── download.vue
│   │   └── index.vue
│   ├── permission
│   │   ├── components
│   │   │   └── SwitchRoles.vue
│   │   ├── directive.vue
│   │   └── page.vue
│   ├── qiniu
│   │   └── upload.vue
│   ├── redirect
│   │   └── index.vue
│   ├── svg-icons
│   │   ├── index.vue
│   │   └── requireIcons.js
│   ├── system-web
│   │   └── system-manage
│   │   └── user-manage
│   │   └── userList.vue
│   ├── tab
│   │   ├── components
│   │   │   └── tabPane.vue
│   │   └── index.vue
│   ├── table
│   │   ├── complexTable.vue
│   │   ├── dragTable.vue
│   │   ├── dynamicTable
│   │   │   ├── fixedThead.vue
│   │   │   ├── index.vue
│   │   │   └── unfixedThead.vue
│   │   ├── inlineEditTable.vue
│   │   └── treeTable
│   │   ├── customEval.js
│   │   ├── customTreeTable.vue
│   │   └── treeTable.vue
│   ├── theme
│   │   └── index.vue
│   ├── wxmp
│   │   ├── material-manage
│   │   │   ├── news-template-manage
│   │   │   │   └── newsTemplateForm.vue
│   │   │   └── text-template-manage
│   │   │   └── textTemplateList.vue
│   │   └── system-manage
│   │   ├── account-fans-manage
│   │   │   └── accountFansList.vue
│   │   ├── account-manage
│   │   │   └── accountList.vue
│   │   ├── menu-manage
│   │   │   └── menuList.vue
│   │   ├── receive_text
│   │   │   └── receiveTextList.vue
│   │   └── subscribe_text
│   │   └── subscribeTextList.vue
│   └── zip
│   └── index.vue
├── static
│   └── tinymce4.7.5
│   ├── langs
│   │   └── zh_CN.js
│   ├── plugins
│   │   ├── codesample
│   │   │   └── css
│   │   │   └── prism.css
│   │   ├── emoticons
│   │   │   └── img
│   │   │   ├── smiley-cool.gif
│   │   │   ├── smiley-cry.gif
│   │   │   ├── smiley-embarassed.gif
│   │   │   ├── smiley-foot-in-mouth.gif
│   │   │   ├── smiley-frown.gif
│   │   │   ├── smiley-innocent.gif
│   │   │   ├── smiley-kiss.gif
│   │   │   ├── smiley-laughing.gif
│   │   │   ├── smiley-money-mouth.gif
│   │   │   ├── smiley-sealed.gif
│   │   │   ├── smiley-smile.gif
│   │   │   ├── smiley-surprised.gif
│   │   │   ├── smiley-tongue-out.gif
│   │   │   ├── smiley-undecided.gif
│   │   │   ├── smiley-wink.gif
│   │   │   └── smiley-yell.gif
│   │   └── visualblocks
│   │   └── css
│   │   └── visualblocks.css
│   ├── skins
│   │   └── lightgray
│   │   ├── content.inline.min.css
│   │   ├── content.min.css
│   │   ├── fonts
│   │   │   ├── tinymce.eot
│   │   │   ├── tinymce-mobile.woff
│   │   │   ├── tinymce-small.eot
│   │   │   ├── tinymce-small.svg
│   │   │   ├── tinymce-small.ttf
│   │   │   ├── tinymce-small.woff
│   │   │   ├── tinymce.svg
│   │   │   ├── tinymce.ttf
│   │   │   └── tinymce.woff
│   │   ├── img
│   │   │   ├── anchor.gif
│   │   │   ├── loader.gif
│   │   │   ├── object.gif
│   │   │   └── trans.gif
│   │   ├── skin.min.css
│   │   └── skin.min.css.map
│   └── tinymce.min.js
└── yarn.lock

132 directories, 329 files

标签:

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警