Vue 属性绑定

快速上手本来没有了解CDN模式,但巩固有些东西的时候还是绕不过~

Vue 属性绑定_第1张图片

  • v-bind 绑定超链接
    Vue 属性绑定_第2张图片

test.js实例化vue对象

// 实例化vue对象
new Vue({
	el: '#vue_det',
	data: {
		site: "菜鸟教程",
		url: "http://www.runoob.com",
		alexa: "10000",
		websiteTag:"菜鸟教程"
	},
	methods: {
		details: function() {
			return  this.site + " - 学的不仅是技术,更是梦想!";
			}
		}
	})
  • 绑定 value值

Vue 属性绑定_第3张图片

  • 绑定标签
    Vue 属性绑定_第4张图片




  
  element-starter
  



	
	
	
	



你可能感兴趣的:(前端)