file added
This commit is contained in:
Родитель
a80243c743
Коммит
59aaa5a909
|
@ -1,4 +1,4 @@
|
|||
# quickstart
|
||||
# ej2-showcase-vue-asset-management
|
||||
|
||||
## Project setup
|
||||
```
|
||||
|
|
18
package.json
18
package.json
|
@ -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>
|
||||
|
|
630
src/App.vue
630
src/App.vue
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
18
src/main.js
18
src/main.js
|
@ -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
|
||||
}
|
Загрузка…
Ссылка в новой задаче