1小时入手vue

简介: Vue 提供了一个官方的 CLI,为单页面应用 (SPA) 快速搭建繁杂的脚手架。它为现代前端工作流提供了 batteries-included 的构建设置。只需要几分钟的时间就可以运行起来并带有热重载、保存时 lint 校验,以及生产环境可用的构建版本

1小时入手vue



文章目录

1小时Vue

安装Vue

Vue组件

组件的结构

引入其他的组件

Vue class和style绑定

`scoped`

如何引入外部css资源

class的绑定

class绑定多个值

style绑定

Vue template

Vue 表单

v-model的双向绑定

如何导入验证的第三方插件

Vue动画

vue如何使用动画库

Vue路由

1小时Vue

Vue Tutorial in 2018 - Learn Vue.js by Example的笔记,深入浅出,通俗易懂。


效果如下,在线演示地址:http://www.caishuxiang.cn/demo/190619vueproj/#/

安装Vue

安装vue有三种方式,本次使用Vue CLI


Vue 提供了一个官方的 CLI,为单页面应用 (SPA) 快速搭建繁杂的脚手架。它为现代前端工作流提供了 batteries-included 的构建设置。只需要几分钟的时间就可以运行起来并带有热重载、保存时 lint 校验,以及生产环境可用的构建版本


步骤:


安装vue cli


> npm install -g @vue/cli


  • 开始一个新的Vue项目


> vue create vue-proj


  • 进入项目,开启服务,访问localhost:8080


yarn serve


Vue组件


组件是组成Vue应用的基本单元,可以看下vue-pro的工程目录

这里的App.vue、Skill.vue就是组件,每个vue文件都是组件。


组件的结构


template 中放置的是html

script中是页面的逻辑

style中即样式信息


<template>
  ...
</template>
<script>
  ...
</script>
<style>
 ...
</style>


引入其他的组件

如下所示:


<template>
  <!-- Other HTML removed for brevity -->
    <HelloWorld msg="Welcome to Your Vue.js App"/>
  <!-- Other HTML removed for brevity -->
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
  name: 'app',
  components: {
    HelloWorld
  }
}
</script>


Vue class和style绑定

scoped

style元素上使用了scoped,那么该style下面的写的css或者引用的外部css,只对所在component中的元素起作用.如下:


如何引入外部css资源

注意:加了scoped代表该css只在当前componet中元素生效

class的绑定


<template>
  <div class="skills">
    <div class="holder">
      <!-- Add this -->
      <div v-bind:class="{ alert: showAlert}"></div>
    </div>
  </div>
</template>
<script>
export default {
  name: 'Skills',
    data() {
        return {
          showAlert: true  // Add this
        }
    },
  }
}
</script>


如上,只有在showAlert为true时,才该div的class属性加上alert的值。


class绑定多个值


<div v-bind:class="{ alert: showAlert, 'another-class': showClass }"></div>


style绑定


<div v-bind:style="{ backgroundColor: bgColor, width: bgWidth, height: bgHeight }"></div>
<script>
export default {
  name: 'Skills',
    data() {
        return {
          bgColor: 'yellow',
          bgWidth: '100%',
          bgHeight: '30px'
        }
    },
  }
}
</script>


为了模板中代码的简洁,你也可以如下写


<div v-bind:style="alertObject"></div>
<script>
export default {
  name: 'Skills',
    data() {
        return {
          alertObject:{
              backgroundColor: 'yellow',
          width: '100%',
          height: '30px'
          }
        }
    },
  }
}
</script>


Vue template


在vue的模板<template></template>里,可以写html,和使用vue特定的功能。


vue在模板里的功能分为两类:


vue interpolation(vue的插入) 文本插值用{{}} 元素属性插入用v-on v-bind这些指令、也可以在{{}}中写表达式


vue directives (vue的指令) 都是以v-开头的,每个指令都有自己的特定任务

下面的代码中.有用到上述的两种功能


<template>
    <div class="skills">
       文本插入: {{name}}
        <h1 v-once>{{name}}</h1>
       插入表达式:  {{ btnState ? 'The button is disabled' : 'The button is active'}}
        元素属性插入: <button v-on:click="changeName" v-bind:disabled="btnState">Change Name</button>
        v-for指令
        <ul>
            <li v-for="(data,index) in skills" :key='index'>{{index}}. {{data.skill}}</li>
        </ul>
        <p v-if="skills.length >= 1">you have >=1</p>
        <p v-else>you have 小于1</p>
     </div>
</template>


全部的vue指令如下


  • v-text
  • v-html
  • v-show
  • v-if
  • v-else
  • v-else-if
  • v-for
  • v-on
  • v-bind
  • v-model
  • v-pre
  • v-cloak
  • v-once


Vue 表单


v-model的双向绑定


<!-- Add these two lines: -->
<input type="text" placeholder="Enter a skill you have.." v-model="skill">
{{ skill }}



上述代码运行后:在输入框里输入,输入框后面的文本也会显示相应内容


如何导入验证的第三方插件


/src/main.js 文件中做如下更改


import Vue from 'vue'import App from './App.vue'
import VeeValidate from 'vee-validate'; // Add this
Vue.use(VeeValidate); // Add this
// Other code removed for brevity


验证的完整代码:


<form @submit.prevent="addSkill">
    <input type="text" placeholder="输入一个技能" v-model="skill" v-validate="'min:5'" name="skill">
    <p class="alert" v-if="errors.has('skill')">{{errors.first('skill')}}</p>
</form>
<script>
    export default {
        name: 'Skills',
        data: function() {
            return {
                skill: '',
                skills: [{
                        "skill": "vue.js"
                    },
                    {
                        "skill": "php"
                    }
                ]
            }
        },
        methods: {
            addSkill() {
                this.$validator.validateAll().then((result) => {
                    if(result) {
                        this.skills.push({
                            skill: this.skill
                        });
                        this.skill = "";
                    } else {
                        console.log("Not valid");
                    }
                })
            }
        }
    }
</script>


Vue动画


vue2中集成了进入离开动画、状态过渡效果

下面演示了一个进入离开动画写法,需要动画的元素被包裹,然后利用value值做css选择器的前缀,书写css,如下:


<form @submit.prevent="addSkill">
    <input type="text" placeholder="Enter a skill you have.." v-model="skill" v-validate="'min:5'" name="skill" >
    <!-- Add these 3 lines -->
    <transition name="alert-in">
    <p class="alert" v-if="errors.has('skill')">{{ errors.first('skill') }}</p>
    </transition>
</form>
<style>
.alert-in-enter-active {
  animation: bounce-in .5s;
}
.alert-in-leave-active {
  animation: bounce-in .5s reverse;
}
@keyframes bounce-in {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
</style>


上面演示了 enter-active、leave-active两个类名,实际上vue提供了6中用于过渡中切换的类名。


v-enter

v-enter-active

v-enter-to

v-leave

v-leave-active

v-leave-to


对于这些在过渡中切换的类名来说,如果你使用一个没有名字的 ,则 v- 是这些类名的默认前缀。如果你使用了 ,那么 v-enter 会替换为 my-transition-enter。


vue如何使用动画库

拿Animate.css举例,引入了animate.css之后,直接加 enter-active-class=“animated flipInx”


<transition name="alert-in" 
            enter-active-class="animated flipInX" 
            leave-active-class="animated flipOutX">
<p class="alert" 
   v-if="errors.has('skill')">{{ errors.first('skill') }}</p>
</transition>


Vue路由


vue提供了vue-router,用于在vue组件中设置页面路径


  1. 安装vue router


> yarn add vue-router


新增 /src/router.js 配置路由:


import Vue from 'vue'
import Router from 'vue-router'
import Skills from './components/Skills.vue'
import About from './components/About.vue'
Vue.use(Router)
export default new Router({
  routes: [
    {
      path: '/',
      name: 'skills',
      component: Skills
    },
    {
      path: '/about',
      name: 'about',
      component: About
    }
  ]
})


main.js中引入路由


// other imports removed for brevity
import router from './router'
new Vue({
  router,               // Add this line
  render: h => h(App)
}).$mount('#app')
## 在App.vue中运用路由
<template>
  <div id="app">
      <nav>
        <router-link to="/">Home</router-link>
        <router-link to="/about">About</router-link>
      </nav>
    <router-view/>
  </div>
</template>


最终的切换效果:


不妨在本地跑起来玩玩吧~ github地址:https://github.com/pluscai/vue-proj


目录
相关文章
|
17天前
|
数据采集 监控 JavaScript
在 Vue 项目中使用预渲染技术
【10月更文挑战第23天】在 Vue 项目中使用预渲染技术是提升 SEO 效果的有效途径之一。通过选择合适的预渲染工具,正确配置和运行预渲染操作,结合其他 SEO 策略,可以实现更好的搜索引擎优化效果。同时,需要不断地监控和优化预渲染效果,以适应不断变化的搜索引擎环境和用户需求。
|
3天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
4天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
4天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
4天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
3天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
5天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
3天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
5天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
10天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发