繁体   English   中英

如何在组件 vue 中使用 file.js

[英]How can I use a file.js in a component vue

我尝试在我的应用程序 (InputSwap.vue) 的其中一个组件中使用 prueba.js,其中有一个按钮 ('console.log')。 我想通过那个按钮来使用这个文件,但应用程序向我显示了这个错误:

在此处输入图片说明

prueba.js 让我通过单击按钮在控制台中查看数据。 数据是用 window.localStorage 保存的:

window.localStorage.setItem('data_input', JSON.stringify(data));

我错在哪里?


prueba.js :

export default {
   infoPrueba() {
        var data = (JSON.parse(window.localStorage.getItem('data_input')))
        console.log(data)
    }
}

InputSwap.vue:

<template>
    <div class="card-action">
      <Button v-on:click="prueba()"
        v-bind:style="{'margin-left' : '5px', background : '#52368c'}"
        btext="Console.log" icon="code"
      />
    </div>
</template>
<script>
import Button from './Button'
import * as prueba from './prueba.js' // I have prueba.js in components folder
export default {
  name: 'InputSwap',
  components: {Button},
  methods: {
    prueba: async function () {
      prueba.infoPrueba()
    },
  },
}
</script>

感谢 x-rw,我解决了这个问题:

我将 import * as prueba from './prueba.js' 改为 import {infoPueba} from './prueba.js'

我在 prueba.js 中写了这段代码:

export const infoPrueba = () => {
  var data = (JSON.parse(window.localStorage.getItem('data_input')))
  console.log(data)
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM