VUE移动端项目
文章平均质量分 91
怡怡子˙Ꙫ˙
码农
展开
-
移动端项目 文章管理
一、创建组件配置路由1.创建 views/article/index.vue 组件2.将该页面配置到根级路由{ path: '/article/:articleId', name: 'article', component: () => import('@/views/article')}3.在 src\components\article-item\index.vue 中的文章列表中绑定<van-cell class="article-item" :to="`/ar.原创 2021-06-12 09:44:09 · 434 阅读 · 1 评论 -
移动端项目 头条首页 弹出层频道编辑
ui效果图:一、添加popup弹出层组件,高100%占满屏幕,留一个左上侧×号home/index.vue<van-popup v-model="isPopupShow" closeable close-icon-position="top-left" position="bottom" :style="{ height: '100%' }"/>当isPopupShow=true 弹出层弹出二、将‘我的频道‘和’频道推荐‘做成一个组件channel-原创 2021-06-07 20:19:25 · 863 阅读 · 0 评论