Vue简单搜索 <div id="box"> <input type="text" v-model="show" > <transition-group name="fade" ente...
es6 连接数组 const a=1; const b=[2,3]; c=[a,...b]; [e,...f]=[1,2,3,4]; console.log(c); console.log(e); console.lo...
共用header然后让 header内容的标志项选中 $(document).ready(function(){ $(".header").load("header.html"); $(".nav-left").load("nav.html",funct...
Vue子组件传递信息到父组件 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>...
Vue slot 在模板中加 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>...
Vue 动态组件 <div id="box"> <input type="button" value="aaa组件" @click="a='aaa'"> <input type="butt...
Vue动画和animate.Css相结合 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>...
Vue父子组件 父子组件: <div id="box"> <aaa></aaa> </div> <template id="aaa"> <h1>...
vue路由-1.0 vue1.0的路由配置: vue1.0.28,vue-router 0.7.13 <!DOCTYPE html> <html lang="en"> <head> &...