mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 10:08:57 +00:00
14 lines
300 B
HTML
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>
|