Home  >  Article  >  PHP Framework  >  Share laravel8+vue3.0+element-plus construction method

Share laravel8+vue3.0+element-plus construction method

藏色散人
藏色散人forward
2021-03-15 17:37:533752browse

The following tutorial column will introduce and share the laravel8 vue3.0 element-plus building method from the laravel tutorial column. I hope it will be helpful to friends in need!

Share laravel8+vue3.0+element-plus construction method

Preface

I suddenly discovered vue3.0 a few days ago, so I just had time to give it a try.

Start

  1. Create laravel8 project
    composer create-project laravel/laravel laravel8 --prefer-dist
    or
    laravel new laravel8
  2. Install laravel/ui
    composer require laravel/ui
    and run
    php artisan ui vue
    in the root directory
  3. Modify package.json file
    "devDependencies": {
          "@vue/compiler-sfc": "^3.0.7",
          "axios": "^0.21",
          "bootstrap": "^4.0.0",
          "jquery": "^3.2",
          "laravel-mix": "^6.0.6",
          "lodash": "^4.17.19",
          "popper.js": "^1.12",
          "postcss": "^8.1.14",
          "resolve-url-loader": "^3.1.2",
          "sass": "^1.20.1",
          "sass-loader": "^8.0.0",
          "vue": "^3.0.7",
          "vue-loader": "^16.1.0",
          "vue-template-compiler": "^2.6.10"
      },
      "dependencies": {
          "element-plus": "^1.0.2-beta.35",
          "vue-router": "^4.0.5"
      }
  4. Modify app.js file
    require('./bootstrap');window.Vue = require('vue');window.VueRouter = require('vue-router');import routes from "./router"import axios from "axios"import ElementPlus from 'element-plus'const router = VueRouter.createRouter({
      history: VueRouter.createWebHashHistory(),
      routes,})import RootComponent from "./components/layouts/App"const app = Vue.createApp(RootComponent)app.config.globalProperties.$http=axios
    app.use(router)
      .use(ElementPlus);app.mount('#app')
  5. New router.js
    import Home from "./components/layouts/Home"export default [
      {path:'/',component: Home},]
  6. New App.vue (element-plus official document example)
    <template>
      <el-container>
          <el-header>Header</el-header>
          <el-main><router-view></router-view></el-main>
          <el-footer>Footer</el-footer>
      </el-container></template><script>export default {}</script><style>.el-header, .el-footer {
      background-color: #B3C0D1;
      color: #333;
      text-align: center;
      line-height: 60px;}.el-aside {
      background-color: #D3DCE6;
      color: #333;
      text-align: center;
      line-height: 200px;}.el-main {
      background-color: #E9EEF3;
      color: #333;
      text-align: center;
      line-height: 160px;}body > .el-container {
      margin-bottom: 40px;}.el-container:nth-child(5) .el-aside,.el-container:nth-child(6) .el-aside {
      line-height: 260px;}.el-container:nth-child(7) .el-aside {
      line-height: 320px;}</style>
  7. New Home.vuerrree
  8. app.scss Introduce element-plus css file
    <template>
      <p>home</p></template><script>export default {
      methods:{
          cs(){
              axios.post("../index").then(function (response){
                  console.log(response);
              }).catch(function (error){
                  console.log(error);
              })
          }
      },
      mounted() {
          this.cs();
      }}</script><style scoped></style>
  9. Run command
    // Variables@import 'variables';// Bootstrap@import '~bootstrap/scss/bootstrap';// element-plus@import "~element-plus/lib/theme-chalk/index.css";
  10. Rendering

laravel8+vue3.0 搭建

The console output is axios post request test.

complete!

The above is the detailed content of Share laravel8+vue3.0+element-plus construction method. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:learnku.com. If there is any infringement, please contact admin@php.cn delete