Skip to content

Commit

Permalink
form mixin code added
Browse files Browse the repository at this point in the history
  • Loading branch information
yogesh committed Dec 10, 2021
1 parent e80bd1a commit 55385a7
Show file tree
Hide file tree
Showing 8 changed files with 16,218 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
5 changes: 5 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
39 changes: 39 additions & 0 deletions config/webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
const path = require('path');
const VueLoaderPlugin = require('vue-loader/lib/plugin')

module.exports = {
entry: path.resolve(__dirname + './../src/index.js'),
output: {
path: path.resolve(__dirname + './../dist'),
filename: 'vue-nice-table.js'
},
module: {
rules: [{
test: /\.js$/,
use: 'babel-loader'
},
{
test: /\.vue$/,
use: 'vue-loader'
},
{
test: /\.css$/,
use: [
'vue-style-loader',
'css-loader'
]
},
{
test: /\.s[ac]ss$/i,
use: [
'style-loader',
'css-loader',
'sass-loader',
]
},
]
},
plugins: [
new VueLoaderPlugin()
]
}
Loading

0 comments on commit 55385a7

Please sign in to comment.