微信登录

例子 - 少写.html - 写.vue

  1. <div id="vue_det">
  2. <h1>site : {{site}}</h1>
  3. <h1>url : {{url}}</h1>
  4. <h1>{{details()}}</h1>
  5. </div>
  6. <script type="text/javascript">
  7. var vm = new Vue({
  8. el: '#vue_det',
  9. data: {
  10. site: "教程",
  11. url: "www.xxx.com",
  12. alexa: "10000"
  13. },
  14. methods: {
  15. details: function() {
  16. return this.site + " - ok!";
  17. }
  18. }
  19. })
  20. </script>

el挂载器

例子 - 少写.html - 写.vue