1.0.0
parent
8e09ca3493
commit
9b00dc971f
17
index.js
17
index.js
|
@ -9,6 +9,21 @@ import Smarty from 'smartyx'
|
||||||
export default {
|
export default {
|
||||||
name: 'views',
|
name: 'views',
|
||||||
install() {
|
install() {
|
||||||
//
|
var eng = new Smarty()
|
||||||
|
var conf = this.get('views')
|
||||||
|
|
||||||
|
if (conf.enabled) {
|
||||||
|
if (conf.dir) {
|
||||||
|
eng.config('path', conf.dir)
|
||||||
|
|
||||||
|
if (conf.ext) {
|
||||||
|
eng.config('ext', conf.ext)
|
||||||
|
}
|
||||||
|
return eng
|
||||||
|
} else {
|
||||||
|
throw new Error('views.dir is empty')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Object.create(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue