<template> <div class="hello"> <h1>Game on!</h1> <h2>{{ msg }}</h2>
<h3>Count: {{ count }}</h3>
<button @click="increment">+</button> <button @click="decrement">-</button> </div> </template> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> h1 { margin: 40px 0 0; } a { color: #42b983; } </style>