Skip to content

Commit feb35d7

Browse files
author
Julia Bakerink
committed
Added ExportComponentMixin and added export component functionality to Export Currently Selec
ted button in home side bar. Co-authored by: Julia Bakerink [email protected] Co-authored by: Megan Nadkarni [email protected]
1 parent 56586c1 commit feb35d7

File tree

14 files changed

+418
-360
lines changed

14 files changed

+418
-360
lines changed

Test3/babel.config.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

Test3/package.json

Lines changed: 0 additions & 48 deletions
This file was deleted.

Test3/public/index.html

Lines changed: 0 additions & 21 deletions
This file was deleted.

Test3/src/App.vue

Lines changed: 0 additions & 19 deletions
This file was deleted.

Test3/src/components/Test2.vue

Lines changed: 0 additions & 16 deletions
This file was deleted.

Test3/src/main.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

Test3/src/router.js

Lines changed: 0 additions & 13 deletions
This file was deleted.

Test3/src/views/HomeView.vue

Lines changed: 0 additions & 20 deletions
This file was deleted.

Test3/src/components/Test.vue renamed to TestExport/Test.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@
55
</template>
66

77
<script>
8+
import ButtonTest from '@/components/ButtonTest.vue';
89
910
export default {
1011
name: 'Test',
1112
components: {
13+
ButtonTest,
1214
},
1315
};
1416
</script>

TestTwoComponents/Test.vue renamed to TestExport2/Test.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
</template>
66

77
<script>
8-
import TestChild from '@/components/TestChild.vue';
8+
import ButtonTest from '@/components/ButtonTest.vue';
99
1010
export default {
1111
name: 'Test',
1212
components: {
13-
TestChild,
13+
ButtonTest,
1414
},
1515
};
1616
</script>

0 commit comments

Comments
 (0)