-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
25 lines (22 loc) · 671 Bytes
/
main.js
File metadata and controls
25 lines (22 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import VueMdl from 'vue-mdl'
import Vue from 'vue'
import Feedfilter from './Feedfilter2'
import * as firebase from 'firebase'
Vue.use(VueMdl)
var fbConfig = {
apiKey: 'AIzaSyD-8ufIk2M7Hbpmr8ulgDvMhykJUoK6Qmo',
authDomain: 'feedfilter-hub-ki.firebaseapp.com',
databaseURL: 'https://feedfilter-hub-ki.firebaseio.com',
};
// var fbConfig = {
// apiKey: 'AIzaSyAFXGUXxxwoUz98eeocPlswYl8VYSTTBwU',
// authDomain: 'tests3lambda.firebaseapp.com',
// databaseURL: 'https://tests3lambda.firebaseio.com',
// };
firebase.initializeApp(fbConfig);
/* eslint-disable no-new */
new Vue({
el: '#feedfilter',
template: '<Feedfilter/>',
components: { Feedfilter }
})