Files
JavaScriptServices/templates/VueSpa/ClientApp/components/counter/counter.vue.html
Steve Sanderson beace263fc Add Vue template
2017-03-10 12:05:41 +00:00

14 lines
300 B
HTML

<template>
<div>
<h1>Counter</h1>
<p>This is a simple example of a Vue.js component.</p>
<p>Current count: <strong>{{ currentcount }}</strong></p>
<button @click="incrementCounter">Increment</button>
</div>
</template>
<script src="./counter.ts"></script>