Skip to content

Commit 99d0ffb

Browse files
committed
make it work with vue3 with examples
1 parent 38a4d9a commit 99d0ffb

28 files changed

+48608
-14781
lines changed

.editorconfig

100755100644
+12-13
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1+
# top-most EditorConfig file
12
root = true
23

4+
# Unix-style newlines with a newline ending every file
35
[*]
4-
charset = utf-8
56
end_of_line = lf
67
insert_final_newline = true
7-
indent_style = space
8-
indent_size = 2
98
trim_trailing_whitespace = true
109

11-
[*.md]
12-
trim_trailing_whitespace = false
10+
# 4 space indentation
11+
[*.php]
12+
indent_style = tab
13+
indent_size = 4
1314

14-
[{package.json,.babelrc}]
15-
indent_style = space
16-
indent_size = 2
15+
# Tab indentation (no size specified)
16+
[Makefile]
17+
indent_style = tab
1718

18-
[*.{js,scss,vue,yml}]
19+
# Rest
20+
[*.{js,ts,jsx,tsx,scss,vue,yml,json,html,py,sh,css,pcss}]
21+
charset = utf-8
1922
indent_style = space
2023
indent_size = 2
21-
22-
[*.{php,json,conf}]
23-
indent_style = space
24-
indent_size = 4

.eslintrc.js

+11-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ module.exports = {
77
extends: ["plugin:vue/recommended", "prettier"], // activate vue related rules
88
parserOptions: {
99
"parser": "@babel/eslint-parser",
10-
"ecmaVersion": 8,
11-
"requireConfigFile": false,
10+
"ecmaVersion": 7,
1211
"sourceType": "module",
1312
"ecmaFeatures": {
1413
"globalReturn": false,
@@ -27,10 +26,19 @@ module.exports = {
2726
"no-debugger": process.env.NODE_ENV === 'production' ? 2 : 0,
2827
"semi": [2, "never"],
2928
"quotes": [2, "single"],
29+
"vue/one-component-per-file": 0,
30+
"vue/no-multiple-template-root": 0,
3031
"vue/require-default-prop": 0,
3132
"vue/require-prop-types": 0,
3233
"vue/no-v-html": 0,
3334
"vue/html-indent": 0,
34-
"vue/component-name-in-template-casing": ['error', 'kebab-case']
35+
"vue/no-use-v-if-with-v-for": 0,
36+
"vue/no-mutating-props": 0,
37+
"vue/component-name-in-template-casing": ['error', 'kebab-case'],
38+
"vue/v-slot-style": ["error", {
39+
"atComponent": "v-slot",
40+
"default": "v-slot",
41+
"named": "longform",
42+
}]
3543
}
3644
};

.gitignore

100755100644
+69-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,71 @@
1-
.DS_Store
2-
node_modules/
3-
npm-debug.log
4-
yarn-error.log
5-
.npmignore
1+
plugin-deploy.sh
2+
export.sh
3+
nbproject
4+
node_modules
5+
build
6+
secret.json
7+
log.txt
8+
9+
# Compiled output #
10+
###################
11+
/dist
12+
/tmp
13+
/build
614

7-
# Editor directories and files
15+
# Dependencies #
16+
###################
17+
/node_modules
18+
/bower_components
19+
/vendor
20+
21+
# Misc #
22+
###################
823
.idea
9-
*.suo
10-
*.ntvs*
11-
*.njsproj
12-
*.sln
24+
config.codekit
25+
/.sass-cache
26+
/connect.lock
27+
/coverage/*
28+
/libpeerconnection.log
29+
npm-debug.log
30+
testem.log
31+
32+
# Compiled source #
33+
###################
34+
*.com
35+
*.class
36+
*.dll
37+
*.exe
38+
*.o
39+
*.so
40+
41+
# Packages #
42+
############
43+
# it's better to unpack these files and commit the raw source
44+
# git has its own built in compression methods
45+
*.7z
46+
*.dmg
47+
*.gz
48+
*.iso
49+
*.jar
50+
*.rar
51+
*.tar
52+
*.zip
53+
54+
# OS generated files #
55+
######################
56+
.DS_Store
57+
.DS_Store?
58+
._*
59+
.Spotlight-V100
60+
.Trashes
61+
ehthumbs.db
62+
Thumbs.db
63+
64+
# Logs and databases #
65+
######################
66+
*.log
67+
*.sql
68+
*.sqlite
69+
70+
.phpunit.result.cache
71+

babel.config.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
module.exports = {
2+
"plugins": [
3+
["@babel/plugin-transform-runtime", {
4+
"corejs": false
5+
}]
6+
],
27
"presets": [
38
["@babel/preset-env", {
49
"modules": "commonjs",
510
"useBuiltIns": "usage",
611
"corejs": 3,
7-
"targets": "> 1%, last 2 versions, ie >= 8",
12+
"targets": "> 1%, last 2 versions, ie >= 11",
813
"debug": false
914
}]
10-
],
11-
"plugins": [
12-
["@babel/plugin-transform-runtime", {
13-
"corejs": false
14-
}]
1515
]
1616
}

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* vue-datatables-net
33
* Vue jQuery DataTables.net wrapper component
44
*
5-
* @version v1.6.2
5+
* @version v2.0.0
66
77
* @repository https://github.com/niiknow/vue-datatables-net.git
88
*/

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mix-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"/index.js": "/index.js?id=c5ec74d2f9db8115c9a5"
2+
"/index.js": "/index.js?id=bf82dbb5c6ef1912673f"
33
}

example/app.vue example/Example.vue

+3-8
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
<div class="row">
77
<div class="col-12 col-md-9">
88
Below are client-side buttons demo, go here to see
9-
<a
10-
href="https://laratt.niiknow.org/home/contacts"
11-
target="_blank"
12-
>
9+
<a href="https://laratt.niiknow.org/home/contacts" target="_blank">
1310
server-side buttons demo
1411
</a>
1512
</div>
@@ -55,14 +52,12 @@
5552
<b>Show Details</b>
5653
</template>
5754
<template
58-
slot="address2"
59-
slot-scope="ctx"
55+
v-slot:address2="ctx"
6056
>
6157
<span>{{ ctx.data.city }}, {{ ctx.comp.formatCode(ctx.data.zipcode) }}</span>
6258
</template>
6359
<template
64-
slot="_details"
65-
slot-scope="ctx"
60+
v-slot:_details="ctx"
6661
>
6762
<strong>I'm a child for {{ ctx.data.id }} yall</strong>
6863
</template>

example/app.js

-7
This file was deleted.

example/example.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import App from './Example.vue'
2+
import { createApp } from 'vue'
3+
4+
const app = createApp(App)
5+
app.mount('#app')

0 commit comments

Comments
 (0)