ES6对象字面量增强写法

<script>
  const id = 1;
  const name = 'furong';
  const age = 12;

  const obj = {
    id,
    name,
    age
  };

  console.log(obj);
</script>

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <script src="https://unpkg.com/vue/dist/vue.js"></script>
  </head>
  <body>
    <div id="app">
      <p>{{ message }}</p>
      <p>{{ fullName }}</p>
    </div>

    <script>
      const app = new Vue({
        el: '#app',
        data: {
          message: 'Hello Vue.js!',
          firstName: "thomas",
          lastName: "zhang",
        },
        computed: {
          fullName() {
            return this.firstName + ' ' + this.lastName;
          }
        }
      })
    </script>
  </body>
</html>

image

原文地址:https://www.cnblogs.com/zhangxuechao/p/14958598.html