Да будет код...

This commit is contained in:
Denis M
2025-12-10 10:26:01 +03:00
commit 1fcdeeaa1a
10 changed files with 6010 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<template>
<h1>{{ msg }}</h1>
<button @click="count++">count is: {{ count }}</button>
<p>Edit <code>components/HelloWorld.vue</code> to test hot module replacement.</p>
</template>
<script>
export default {
name: 'HelloWorld',
props: {
msg: String
},
data() {
return {
count: 0
}
}
}
</script>