|
- import Pannel from '@/components/pannel/index.vue';
- import PannelTabs from '@/components/pannel-tabs/index.vue';
- import LineCharts from '@/components/charts/line/index.vue';
- import PieCharts from '@/components/charts/pie/index.vue';
-
- export default {
- components: {
- LineCharts,
- PieCharts,
- PannelTabs,
- Pannel
- },
- data () {
- return {
- tabIndex: '1'
- };
- },
- created () {
- },
- mounted () {
- },
- methods: {
- tabChange (info) {
- this.tabIndex = info.id
- }
- }
- };
|