File tree Expand file tree Collapse file tree 7 files changed +271
-0
lines changed Expand file tree Collapse file tree 7 files changed +271
-0
lines changed Original file line number Diff line number Diff line change 1+ module . exports = {
2+ presets : [
3+ '@vue/cli-plugin-babel/preset'
4+ ]
5+ }
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " vue3-pivottable-getting-started" ,
3+ "version" : " 0.1.0" ,
4+ "private" : true ,
5+ "scripts" : {
6+ "serve" : " vue-cli-service serve" ,
7+ "build" : " vue-cli-service build" ,
8+ "lint" : " vue-cli-service lint"
9+ },
10+ "dependencies" : {
11+ "@syncfusion/ej2-vue-grids" : " ^19.2.51" ,
12+ "@syncfusion/ej2-vue-pivotview" : " ^19.2.51" ,
13+ "core-js" : " ^3.6.5" ,
14+ "vue" : " ^3.0.0"
15+ },
16+ "devDependencies" : {
17+ "@vue/cli-plugin-babel" : " ~4.5.0" ,
18+ "@vue/cli-plugin-eslint" : " ~4.5.0" ,
19+ "@vue/cli-service" : " ~4.5.0" ,
20+ "@vue/compiler-sfc" : " ^3.0.0" ,
21+ "babel-eslint" : " ^10.1.0" ,
22+ "eslint" : " ^6.7.2" ,
23+ "eslint-plugin-vue" : " ^7.0.0"
24+ },
25+ "eslintConfig" : {
26+ "root" : true ,
27+ "env" : {
28+ "node" : true
29+ },
30+ "extends" : [
31+ " plugin:vue/vue3-essential" ,
32+ " eslint:recommended"
33+ ],
34+ "parserOptions" : {
35+ "parser" : " babel-eslint"
36+ },
37+ "rules" : {}
38+ },
39+ "browserslist" : [
40+ " > 1%" ,
41+ " last 2 versions" ,
42+ " not dead"
43+ ]
44+ }
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="">
3+ < head >
4+ < meta charset ="utf-8 ">
5+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6+ < meta name ="viewport " content ="width=device-width,initial-scale=1.0 ">
7+ < link rel ="icon " href ="<%= BASE_URL %>favicon.ico ">
8+ < title > < %= htmlWebpackPlugin.options.title %> </ title >
9+ </ head >
10+ < body >
11+ < noscript >
12+ < strong > We're sorry but < %= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</ strong >
13+ </ noscript >
14+ < div id ="app "> </ div >
15+ <!-- built files will be auto injected -->
16+ </ body >
17+ </ html >
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1+ import { createApp } from 'vue'
2+ import App from './App.vue'
3+
4+ createApp ( App ) . mount ( '#app' )
You can’t perform that action at this time.
0 commit comments