//= require highlight.pack
// NORMAL
//
// function name(){
// return 'jake';
// }
//
// //comment
// var test = '12' + ' days';
//
// DARK UI
//
// function name(){
// return 'jake';
// }
//
// //comment
// var test = '12' + ' days';
//
// INLINE
//
// function name(){
// return 'jake';
// }
//
// //comment
// var test = '12' + ' days';
//
(function() {
"use strict";
App.vue.config.code = {
'dark': false
}
var template = '
';
App.vue.components.vueCode = Vue.extend({
template: template,
props: {
lang: String,
inline: {
type: Boolean,
default: false
},
dark: {
type: Boolean,
default: App.vue.config.code.dark
}
},
ready: function() {
var code = this.$els.code;
hljs.highlightBlock(code);
}
});
})();