Vue(Vue CLI)で他ファイルをインポート


<script>
import "./components/Component.vue"

export default {
  el: '#app',
  data() {
    return{
      now: "",
      wakachiko:"uhouho"
    }
  },
  methods:{
    onClick(){
      // alert("onClick!");
      this.now =new Date().toLocaleString();
    }
  }
}
</script>

こんな感じでimport+"ファイル場所"って書けばOKです。