<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue 测试实例 - W3xue教程(w3xue.com)</title>
<script src="//unpkg.com/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<p>{{ site }}</p>
</div>
<script>
var vm = new Vue({
el: '#app',
data: {
name: 'Google',
url: '//www.google.com',
site: 'google //www.google.com'
},
computed: {
site: {
// getter
get: function () {