美文网首页
Vue 中import引入的方法在.vue的template模板

Vue 中import引入的方法在.vue的template模板

作者: 前端放弃师 | 来源:发表于2021-12-20 08:37 被阅读0次

    将import引入的方法在methods里写入,如下所示

    <template>
      <div>{{validateLower}}</div>
    </template>
    <script>
        import { validateLower, validateUpper } from "@/utils/utils";
        ...
        methods: {
            validateLower,
            validateUpper,
        }
    

    相关文章

      网友评论

          本文标题:Vue 中import引入的方法在.vue的template模板

          本文链接:https://www.haomeiwen.com/subject/tjknfrtx.html