<template>
<div class="demo">
<h1>I am a component that works!</h1>
{{msg}}
<button @click="testMethods">Test Button</button>
</div>
</template>
<script>
export default {
data () {
return {
msg: 'I am dynamic data!'
}
},
methods: {
testMethods: function () {
alert('Working!');
}
}
}
</script>
<style scoped>
.demo {
background-color: red;
}
</style>