目 录CONTENT

文章目录
Vue

fastadmin 中引入Vue

ABin
2023-11-08 / 0 评论 / 0 点赞 / 18 阅读 / 0 字

在public/assets/js/require-backend.js

的paths 最后 追加 (最后不要加.js)

 'vue': '../libs/vue/vue'

在shim 最后追加

'vue': {
            exports: 'vue'
        }

在模块js中添加 'vue' 和 Vue

define(['jquery', 'bootstrap', 'backend', 'table', 'form','vue'], function ($, undefined, Backend, Table, Form,Vue) {

在Add方法中添加vue 代码

add: function () {
            Controller.api.bindevent();
            new Vue({
                el: '#add-form',
                data() {
                    return{
                        message: 'Hello Vue!'
                    }
                },
                mounted() {
                    console.log(111111);
                },
                methods:{
                    addItem(){
                        console.log("!!!");
                    }
                }
            });

        },

0

评论区