脳汁portal

アメリカ在住(だった)新米エンジニアがその日学んだIT知識を書き綴るブログ

Nuxt.js

Nuxt.jsで画像をwebpで圧縮する

library install npm install --save gulp-webp gulpfile.js vi gulpfile.js const webp = require('gulp-webp') gulp.task('webp', function() { return gulp.src("./precompile/img/**/*.{svg,gif,png,jpg,jpeg}") .pipe(webp()) .pipe(gulp.dest("./asset…

Nuxt.js Tips

nuxt.jsのtipsです componentに値を渡す場合 送る側 <template> <MyComponent /> </template> <script> import MyComponent from "~/components/MyComponent.vue" export default { components: { MyComponent } } </scipt> 受け取る側(MyComponet.vue) <script> export default { props: { aaa, bbb, ccc</script>…