vue-indent-pug-loader
v0.1.1
Published
a vue pug template loader that the first line has space indent
Maintainers
Readme
vue-indent-pug-loader
this is a vue pug template loader that the first line has space indent.
Install
npm install vue-indent-pug-loader --save-devor:
yarn add vue-indent-pug-loader --devUsage
// webpack config loaders
{
test: /\.pug$/,
oneOf: [
// this applies to <template lang="pug"> in Vue components
{ resourceQuery: /^\?vue/, use: ['vue-indent-pug-loader'] },
// this applies to pug imports inside JavaScript
{ use: ['raw-loader', 'vue-indent-pug-loader'] }
]
},