vue简单的小知识

vue:

主要终端操作

1.下脚手架:vue create 项目名

    选择顺序:2- -1,4,5,6- -2- -1

2.起服务:npm run serve

3.下包 : npm i axios -D    -----ajax

npm i swiper -D  ------轮播图

清空脚手架

1.App.vue文件中只留这些

<template>

  <div id="app">

   <router-view></router-view>//用于稍后配路由的视图

  </div>

</template>

<style lang="scss">

//必要添加的样式

<style>

*{

  padding: 0;

  margin: 0;

  list-style: none

}

body,html,#app{

  width: 100%;

  height: 100%;

}

</style>

1.view文件夹清空,准备写入所需要的路由文件

2.router => index.js文件中删除以下代码,准备再此文件配路由

  import Home from '../views/Home.vue'

{

    path: '/',

    name: 'home',

    component: Home

  },

  {

        path:"/login",

        component:()=>import('../liews/Login/Login')

    },

  {

    path: '/about',

    name: 'about',

    // route level code-splitting

    // this generates a separate chunk (about.[hash].js) for this route

    // which is lazy-loaded when the route is visited.

    component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')

  }

3.删除 components=>HelloWorld.vue 文件,准备写入插件

4.store=>index.js 文件不动,准备写入vuex操作

3.路由配置

在views文件中创建需要的路由配置文件(.vue格式的文件)

例如:     


文件内容基本格式

<template>

</template>

<script>

export default {

}

</script>

<style>

</style>

3.在router=>index.js文件中配置路由

import index from "../views/index/index.vue"//引入文件

(2)在const routes =[]中配置

{ path:"/index", //路由位置

    component:index,//引入的组件文件

    redirect:"/index/head",//重定向

    Children:[]  //下一级路由,格式同上

}

在文件需要的地方引路由

 (1)<router-view></router-view>//路由页面展示部分

(2) <router-link to="/index/head">首页</router-link>

    <router-link to="/index/ding">订单</router-link>

    <router-link to="/index/my">我的</router-link>//切换路由部分

点击切换的样式

 .router-link-active {

      color: #fff;//点击字体颜色改变为白色

    }

4.简单样式(css)【注:在除了App.vue外其余vue文件的style标签加scoped属性】【scss样式加lang=”scss”】

三段式

.index{

  width:100%;

  height:100%;

  display:flex;

  flex-direction:column;

  header{

        width:100%;

        height:50px;

}

  main{

    flex:1;

    width:100%;

    overflow:true

}

  footer{

    width:100%;

    height:50px;

}

  }

吸顶

position:sticky;

left:0;

top:0;  ==>需要吸顶的部分距离顶部位置的负值

横滚

overflow-x: scroll; ==>横向加滚动条

5.数据的模拟与引入(建议直接自己模拟.json文件)

1.在src文件夹内新建mock文件夹创建data.json模拟.json数据

2.引数据

(1)需要引用数据的文件

<script>

import axios from "axios";

export default {

  data() {

    return {

     data: [],

    };

  },

  mounted() {

    axios.get("/getdata").then(res => {

      this.data= res.data;

      });

    });

  }

};

</script>

1.在最外层(与src文件夹平级)创建vue.config.js文件

const data = require("./src/mock/data.json")

module.exports = {

    devServer:{

        before(app){

            app.get("/getdata",(req,res)=>{

                res.send(data)

            })

        } 

    }

6.标签内的方法

1.循环

  <li v-for="(item,index) in data" :key="index">{{item}}</li>

2.受控组件

<input v-model="message">

3.点击事件

  <template>

<p @click="">点击</p>

</template>

<script>

  export default {

     methods:{

       clickBtn(){

          console.log(“点击”)        } 

      }

}

  </script>

7.组件

1.在components文件夹中创建.vue格式的文件

2.在引入组件的文件中写入(例如要引入dldom插件)

<template>

  <div class="head">

    <div class="list">

      <dldom

        v-for="(item,index) in data"

        :key="index"

        :img="item.img"  //传到插件中的数据格式

        :name="item.name"

        :tit="item.title"

        :id="item.id"

        :num="item.num"

        :price="item.price"

      ></dldom>

    </div>

  </div>

</template>

<script>

import dldom from "../../../components/dldom.vue";

export default {

  data() {

    return {

      data: [],

    };

  },

  components: {

    dldom

  }

</script>

3.在插件中

(1)获取传过来的数据

<script>

export default {

    props:["img","name","tit","id","num","price"],

}

</script>

(2)直接使用数据

八、跳详情

1.添加点击事件

2.script里写

methods:{

       goDetail(){

           this.$router.push("/detail?id="+this.id)

       } 

 }

3.再vue.config.js文件中写(obj是在数据里筛选出点击的单个数据)

app.get("/getdetail",(req,res)=>{

                let obj = data.dldom.find(item=>item.id==req.query.id)

                res.send(obj)

    })

  3.detail.vue文件中(this.obj是刚创建的)

 mounted(){

    axios.get("/getdetail",{

      params:{

        id:this.$route.query.id

      }

    }).then(res=>{

      this.obj=res.data

    })

  }

九、Vuex

1.this.$store.commit("addnum",this.obj)

“addnum”是vuex的方法名  this.obj是传到后台的数据

2.在store文件中的index.js 文件中

state: {

    shopcarList:[]    //创建数据

  }

 mutations: {

    addnum(state,obj){//obj是传过来的数据

        state.shopcarList.push(obj)

    }

  }

3.使用vuex的数据  取到数据后直接使用

 computed:{

    shopcarList(){

      return this.$store.state.shopcarList  //shopcarList是取过来的数据

    }

  }

1.轮播图

1.下包  npm i swiper -D

2.引组件

import Swiper from "swiper";

import "swiper/css/swiper.css";

3.写功能  在渲染数据的axios里写

 mounted() {

    axios.get("/getdata").then(res => {

      this.swiperList1 = res.data.swiperList1;

      this.$nextTick(() => {

        new Swiper(".swiper-container", {

          loop: true, //无缝轮播开启

          autoplay: true  //自动轮播

        });

      });

    });

  }

4.轮播标签

 <div class="swiper-container">

      <div class="swiper-wrapper">

        <div class="swiper-slide" v-for="(item,index) in swiperList1" :key="index">

          <img :src="item.img" alt />

        </div>

      </div>

    </div>

2.点击返回

this.$router.back()

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,245评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,749评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,960评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,575评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,668评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,670评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,664评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,422评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,864评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,178评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,340评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,015评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,646评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,265评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,494评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,261评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,206评论 2 352