This commit is contained in:
Anbumani Rajendracholan 2022-12-07 12:45:38 +05:30
Родитель a80243c743
Коммит 59aaa5a909
6 изменённых файлов: 651 добавлений и 24 удалений

Просмотреть файл

@ -1,4 +1,4 @@
# quickstart
# ej2-showcase-vue-asset-management
## Project setup
```

Просмотреть файл

@ -1,5 +1,5 @@
{
"name": "quickstart",
"name": "ej2-showcase-vue-asset-management",
"version": "0.1.0",
"private": true,
"scripts": {
@ -8,8 +8,22 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"@syncfusion/ej2-vue-grids": "*",
"@syncfusion/ej2-vue-base": "*",
"@syncfusion/ej2-vue-buttons": "*",
"@syncfusion/ej2-vue-calendars": "*",
"@syncfusion/ej2-vue-charts": "*",
"@syncfusion/ej2-vue-dropdowns": "*",
"@syncfusion/ej2-vue-inputs": "*",
"@syncfusion/ej2-vue-lists": "*",
"@syncfusion/ej2-vue-navigations": "*",
"@syncfusion/ej2-vue-notifications": "*",
"@syncfusion/ej2-vue-popups": "*",
"@syncfusion/ej2-vue-treemap": "*",
"core-js": "^3.8.3",
"vue": "^2.6.14"
"vue-router": "^3.0.1",
"vue": "^2.6.14",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.16",

Просмотреть файл

@ -6,6 +6,9 @@
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
<link rel="shortcut icon" href="static/favicon.ico" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.syncfusion.com/ej2/fabric.css" rel="stylesheet"/>
</head>
<body>
<noscript>
@ -13,5 +16,6 @@
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
</body>
</html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,8 +1,18 @@
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App.vue'
import App from './App'
import router from './router'
import store from './store'
Vue.config.productionTip = false
Vue.config.devtools = true
/* eslint-disable no-new */
new Vue({
render: h => h(App),
}).$mount('#app')
el: '#app',
router,
store,
components: { App },
template: '<App/>',
data: {}
})

Просмотреть файл

@ -2,3 +2,6 @@ const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true
})
module.exports = {
runtimeCompiler: true
}