Vue.component('ffooter', {
template: '
',
props: {
rootPath: {
type: String,
default:''
}
},
data () {
return {
menuNames: ['home', 'about', 'news', 'chanye', 'huiyuan', 'fuwuqu', 'gonggao']
};
},
mounted: function() {
this.init();
},
beforeDestroy: function() {
},
methods: {
init: function() {
}
}
});