Skip to content

Instantly share code, notes, and snippets.

@glaucia86
Created May 27, 2019 00:44
Show Gist options
  • Save glaucia86/5c75b0686b27a8f5b3f9b7a575e2b89f to your computer and use it in GitHub Desktop.
Save glaucia86/5c75b0686b27a8f5b3f9b7a575e2b89f to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<Calculadora/>
</div>
</template>
<script>
import Calculadora from './components/Calculadora';
export default {
name: 'App',
components: {
Calculadora,
},
};
</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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment