# Vue.js **Repository Path**: srect/Vue.js ## Basic Information - **Project Name**: Vue.js - **Description**: This is my vuejs demo - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-07 - **Last Updated**: 2022-03-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vuejs-demo -指令 -属性 -过滤器 -事件 -交互 -过渡(动画) -组件 ## Code Example ```html Document
``` ```JavaScript new Vue({ el: "#box", data: { arr: ["apple","orange","banana"], json: { name:"jack", age: 18, job: "student" } }, methods:{ push:function(){ this.arr.push("tomato"); } } }); ```