Inflearn brand logo image

Inflearn Community Q&A

wlfjddlz0187's profile image
wlfjddlz0187

asked

The Complete Guide to Vue.js - Practical Concepts Learned Through Practice and Refactoring

Router Installation and Router Implementation

import { router } from './router/index.js';

Written on

·

237

3

강사님 안녕하세요. 강의 잘 보고 있습니다.

import { router } from './router/index.js';

import router from './router/index.js';

의 차이는 무엇인가요??

아래로 썼다가 라우터가 동작을 안해서 한참 찾아보니 저런 오타가 있었네요...

vuejsjavascript

Answer 1

1

captain님의 프로필 이미지
captain
Instructor

안녕하세요 진영님, 두 코드의 차이점은 export를 할 때 default를 넣느냐 안넣느냐의 차이입니다. 자세한 내용은 아래 링크를 참고해보시면 좋을 것 같아요 :)

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export

wlfjddlz0187's profile image
wlfjddlz0187

asked

Ask a question