added initial files vue

This commit is contained in:
Kostya
2023-11-12 21:39:22 +03:00
parent d7cc217979
commit 2771f216da
15 changed files with 11970 additions and 0 deletions

26
luckydiamond/src/App.vue Normal file
View File

@@ -0,0 +1,26 @@
<template>
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'App',
components: {
HelloWorld
}
}
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>