feat(): initial vue support

This commit is contained in:
Modus Create
2018-10-10 17:04:33 -04:00
committed by Mike Hartington
parent a9b30646fe
commit 73cff0c61a
36 changed files with 9914 additions and 0 deletions

9
vue/scripts/clean.js Normal file
View File

@ -0,0 +1,9 @@
const fs = require('fs-extra')
const path = require('path')
const cleanDirs = ['dist']
cleanDirs.forEach(dir => {
const cleanDir = path.join(__dirname, '../', dir)
fs.removeSync(cleanDir)
})