Skip to content

Commit

Permalink
[UPDATE] (issue #267): Modificando componentes para que se adequem ao…
Browse files Browse the repository at this point in the history
… Sigaa
  • Loading branch information
vitormanoel17 committed Apr 23, 2022
1 parent c3c30fa commit ce7321a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
12 changes: 9 additions & 3 deletions src/components/tela.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default {
}
},
mounted(){
fetch('http://localhost:3000/equivalencias')
fetch('https://secret-scrubland-39947.herokuapp.com/equivalencias')
.then(resp => resp.json())
.then(data => this.equivalencias = data)
Expand Down Expand Up @@ -48,18 +48,24 @@ export default {
</script>

<style>
.telaVue {
margin: auto;
width: 60em;
height: 40em;
background-color: rgb(235, 235, 235);
}
/*
h1{
color: white;
}
}*/
input{
width: 20em;
height: 3.5em;
border-radius: 2em;
margin-bottom: 2em;
}
p{
/*p{
color: white;
}
*/
Expand Down
12 changes: 10 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
import { createApp } from 'vue'
import App from './App.vue'
import telaRF2 from './components/telaRF2.vue'
import tela from './components/tela.vue'
import telaGraficos from './components/telaGraficos.vue'
//import App from './App.vue'


createApp(telaRF2).mount(".fluxo")
createApp(tela).mount(".equivalencia")
createApp(telaGraficos).mount(".graficos")


createApp(App).mount('#app')

0 comments on commit ce7321a

Please sign in to comment.