Skip to content

Commit

Permalink
Use real import
Browse files Browse the repository at this point in the history
  • Loading branch information
brachkow committed Nov 14, 2023
1 parent c104740 commit 6713195
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 38 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
"turndown": "^7.1.2",
"uuid": "^9.0.1",
"vue": "^3.3.8",
"vue-notion": "github:tough-dev-school/vue-notion",
"vue-router": "^4.2.5",
"vue-tabler-icons": "^2.21.0",
"vue-notion": "link:../vue-notion"
"vue-tabler-icons": "^2.21.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
Expand Down
96 changes: 62 additions & 34 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/views/VNotionView/VNotionView.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts" setup>
// @ts-ignore
import { NotionRenderer } from '@/../../vue-notion';
import { NotionRenderer } from 'vue-notion';
import { useRoute, useRouter } from 'vue-router';
import { watch, computed } from 'vue';
Expand Down Expand Up @@ -81,7 +81,7 @@ [email protected]">
</template>

<style>
@import '@/../../vue-notion/styles.css';
@import 'vue-notion/styles.css';
.notion {
@apply text-black dark:text-white;
Expand Down

0 comments on commit 6713195

Please sign in to comment.