import { Component } from './vues6.js' const template = `

{{ message }} (Changes: {{ changes }})

{{ tagline }}

` export default class HelloWorldComponent { static get selector() { return 'hello-world' } static get props() { return ['tagline'] } static get template() { return template } message = 'Hello World' changes = 0 onClick() { this.message += '!' } watch_message(nv, ov) { this.changes += 1 } }