摘要:
VUE-组件 全局组件定义的三种方式 使用Vue.extend配合Vue.component方法:varlogin=Vue.extend({template:'<h1>登录</h1>'});Vue.component('login',login);直接使用Vue.component方法:Vue.co 阅读全文
摘要:
vue动画 使用过渡类名 <div id="app"> <input type="button" value="动起来" @click="myAnimate"> <!-- 使用 transition 将需要过渡的元素包裹起来 --> <transition name="fade"> <div v-s 阅读全文
摘要:
vue生命周期和vue-resource 生命周期: 定义: 从Vue实例创建、运行、到销毁期间,总是伴随着各种各样的事件,这些事件,统称为生命周期! vue生命周期详解: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> 阅读全文