code.js 189 B

1234567891011121314
  1. const app = new Vue({
  2. el: '#root',
  3. data: {
  4. title: "Now the title is set through JavaScript",
  5. },
  6. methods: {
  7. onClick(e) {
  8. alert(e.target.textContent);
  9. }
  10. },
  11. });