1. <div id="app">
    2. {{total}}
    3. </div>
    4. <script>
    5. var vm = new Vue({
    6. el:"#app",
    7. data(){
    8. return {
    9. firstName:"zhang",
    10. lastName:"san"
    11. }
    12. },
    13. /*当参与计算的值发生改变时,总值会改变 */
    14. computed:{
    15. total(){
    16. return this.firstName + this.lastName
    17. }
    18. }
    19. })
    20. </script>