vue
闲着也很忙
确实闲着,还是挺忙的。。。
展开
-
vue路由
1.<script src="../vue/vue-router.js"></script> <!-- 加载进路由--> //在首页中声明 <router-view>...</router-view>//路由加载区 <template> <div>首页</div> <di...原创 2019-06-19 22:34:55 · 136 阅读 · 1 评论 -
vue生命周期
beforeCreate 创建之前 created 创建 beforeMount 挂在之前 mounted 挂在之后 beforeUpdate 更新之前 update 更新之后 beforeDestroy销毁之前 destory 销毁|销毁完成 beforeCreate:function(){ console.log("创建之前") ...原创 2019-06-14 20:35:42 · 119 阅读 · 0 评论 -
02 vue练习
效果: html: <body> <div class="container" id="app"> <div class="text-large"> <img class="float-left margin" :src="pic" alt=""/> <div class="margin"...原创 2019-06-15 21:57:36 · 114 阅读 · 0 评论 -
03.vue页面切换练习
v-show v-bind v-on:click <div class="container" id="app"> <div class="text-large padding"> <span v-on:click="onoff=true" v-bind:class="{'hand':true,'text-red':onoff...原创 2019-06-16 13:13:08 · 177 阅读 · 0 评论 -
Vue01
Vue的官网:https://cn.vuejs.org 1. var vueName=new Vue({ el:'', data:{ str:'', arr:['','',''], objArr:[{},{},{}] }, }) 2.v-if,v-else <div v-if="msg">.....原创 2019-06-16 13:12:48 · 149 阅读 · 0 评论