0

我有一个form.js存储在我的资源/js/

class Form{
    constructor(){
        //more coding here
    }

    //more coding here
}

我的问题是如何在我的 .vue 文件中导入上面的文件?我在下面尝试了这些:

<template>
    //some html here
</template>

<script src="../form.js"></script>
<script>

    export default{
        data(){
            return {
                form: new Form({
                    title: '',
                    body: ''
                })
            }
        }
    }
</script>

但仍然收到这些错误:

[Vue 警告]:data() 中的错误:“ReferenceError:未定义表单”


问题解决

export default class Form{
   //more coding here
}

import Form from '../form.js';

4

0 回答 0