12 lines
454 B
JavaScript
12 lines
454 B
JavaScript
var topbar = {
|
|
template: '<header class="topbar"><div class="container"><div class="col-xs-3 topbar-back"><a href="javascript:history.back()"><span class="glyphicon glyphicon-menu-left"></span>返回</a></div><div class="col-xs-6 topbar-title text-center" v-html="title"></div><div class="col-xs-3 topbar-other text-right"></div></div></header>',
|
|
props: ['title', 'href'],
|
|
data: function () {
|
|
return {
|
|
|
|
}
|
|
},
|
|
created: function () {
|
|
|
|
}
|
|
} |