06 2020 档案
摘要:周日历更新 vue部分 <template> <div class="date"> <!-- 年份 月份 --> <div class="month"> <p><van-button class="vanbutton" icon="arrow-left" @click="pickPre(curren
阅读全文
摘要:渲染数据时,有时候往往需要把最新的那条数据放在最上面,最简单的方法就是在渲染之前把数据先倒序排列好,再渲染到网页上。 这时就要用到reverse()。 排序:sort()方法 和反转:reverse() 方法 <!DOCTYPE html> <html lang="en"> <head> <meta
阅读全文
摘要:需要vue2.0以上 安装: npm install vue-touch@next --save main.js中引入 import VueTouch from 'vue-touch' Vue.use(VueTouch, {name: 'v-touch'}); 在使用的页面或插件中 <v-touch
阅读全文
摘要:一,通过路由带参数进行传值 ①两个组件 A和B,A组件通过query把orderId传递给B组件(触发事件可以是点击事件、钩子函数等) this.$router.push({ path: '/conponentsB', query: { orderId: 123 } }) // 跳转到B ②在B组件
阅读全文
摘要:在项目文件中,如果是vue页面中的内部跳转,用this.router.push({path: '/channeldetailview', query: {channelid: this.data.id}}); 跳到外部链接,不能用这个。不然
阅读全文
摘要:报错信息:谷歌镜部分像被墙掉了 npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! chromedriver@2.46.0 install: `node install.js` npm ERR! Exit status 1 npm ERR! npm
阅读全文
摘要:效果图 <p>标签语句 <p class="news_info">0514试卷0514试卷0514试卷0514试卷0514试卷0514试卷0514试卷0514试卷0514试卷0514试卷0514试卷0514试卷</p> <style> .mytestcell_title { font-size: 1
阅读全文
摘要:基于vue实现按周切换日历 效果图: 废话不说,上代码 文件名:Calendar.vue 组件: <template> <div class="date"> <!-- 年份 月份 --> <div class="month"> <p><van-button class="vanbutton" ico
阅读全文