-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vue.js 컴포넌트와 플러그인 관하여 궁금합니다. #107
Comments
확인했습니다 조금 답변하는데 시간이 걸릴거같은데 괜찮으신가요? 슬랙에 오시면 어느분이든 답변 주실 수 있을 거에요 슬랙에서 질문하시면 더 빠르게 답변을 받으실 것 같아요 |
@hskim1226 님, Vue를 처음 사용하고 계신다면 우선은 컴포넌트가 어떤 것인지 먼저 확인해보시면 어떨까요? |
답변 감사합니다.
function 전역(type){
return "전역값"+type;
} vue1.js getCommcode: function (type) {
return 전역(type)
} vue2.js getCommcode: function (type) {
return 전역(type)
} html에서 전역함수에 직접 접근이 되지 않아서 ,위와 같이 간접적으로 |
개인적인 생각으로 전역으로의 권장(가장 쉽고 빠르게 가능...?)은 vuex가 아닐까 합니다. vuex 말고도 해결책들은 더 있을겁니다. |
vue.use
이런식으로 사용하는것은 , 플러그인 인건가요 ?만약 컴포넌트와 플러그인 이 다른거라면
컴포넌트와 플러그인의 정확한 차이점이 무엇일까요 ..?
사용측면에서 , 어찌 해야할지 잘 모르겠습니다. 답변 주실수 있을까요 ?
The text was updated successfully, but these errors were encountered: