responsive_image_grid/src/App.vue

29 lines
524 B
Vue
Raw Normal View History

2020-06-25 23:29:05 +02:00
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png" />
<HelloWorld msg="Welcome to Your Vue.js App" />
</div>
</template>
<script>
2020-06-25 23:31:51 +02:00
import HelloWorld from './components/HelloWorld.vue'
2020-06-25 23:29:05 +02:00
export default {
2020-06-25 23:31:51 +02:00
name: 'App',
2020-06-25 23:29:05 +02:00
components: {
HelloWorld
}
2020-06-25 23:31:51 +02:00
}
2020-06-25 23:29:05 +02:00
</script>
<style lang="scss">
#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>