Skip to content

Commit

Permalink
docs: describe style import for old versions
Browse files Browse the repository at this point in the history
closes #202
  • Loading branch information
d-koppenhagen committed Jun 16, 2023
1 parent 76f410d commit 10ae2f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ import { createApp } from "vue";
import App from "./App.vue";

import OpenLayersMap from "vue3-openlayers";
import "vue3-openlayers/styles.css";
import "vue3-openlayers/styles.css"; // vue3-openlayers version < 1.0.0-*
import "vue3-openlayers/dist/vue3-openlayers.css"; // vue3-openlayers version >= 1.0.0-*

const app = createApp(App);
app.use(OpenLayersMap);
Expand Down

0 comments on commit 10ae2f0

Please sign in to comment.