mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
768 B
38 lines
768 B
import './scss/painel.scss'
|
|
import Vue from 'vue'
|
|
import { FormSelectPlugin } from 'bootstrap-vue'
|
|
import axios from 'axios'
|
|
|
|
//TODO: incluir painel-controle dentro da app de painel, colocando rotas diferentes
|
|
|
|
axios.defaults.xsrfCookieName = 'csrftoken'
|
|
axios.defaults.xsrfHeaderName = 'X-CSRFToken'
|
|
|
|
Vue.use(FormSelectPlugin)
|
|
|
|
console.log('painel controle main.js carregado')
|
|
|
|
const v = new Vue({ // eslint-disable-line
|
|
delimiters: ['[[', ']]'],
|
|
el: '#painel-controle',
|
|
data () {
|
|
return {
|
|
sessao_plenaria: "74ª Sessão Ordinária da 1ª Sessão Legislativa da 18ª Legislatura",
|
|
message: "",
|
|
}
|
|
},
|
|
|
|
watch: {},
|
|
|
|
computed: {
|
|
|
|
},
|
|
|
|
created () {},
|
|
|
|
methods: {},
|
|
|
|
mounted () {
|
|
console.log("Painel controle app mounted!")
|
|
}
|
|
})
|
|
|