소스 검색

remove unnecessary code

Evan You 9 년 전
부모
커밋
7cb12dc5f7
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      examples/chat/components/App.vue

+ 0 - 2
examples/chat/components/App.vue

@@ -8,12 +8,10 @@
 </template>
 
 <script>
-import store from '../store'
 import ThreadSection from './ThreadSection.vue'
 import MessageSection from './MessageSection.vue'
 
 export default {
-  store,
   components: {
     ThreadSection,
     MessageSection