-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[UPDATE] (issue #267): Modificando componentes para que se adequem ao…
… Sigaa
- Loading branch information
1 parent
c3c30fa
commit ce7321a
Showing
2 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |