Skip to content

Commit 10ae2f0

Browse files
committed
docs: describe style import for old versions
closes #202
1 parent 76f410d commit 10ae2f0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/get-started.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ import { createApp } from "vue";
2323
import App from "./App.vue";
2424

2525
import OpenLayersMap from "vue3-openlayers";
26-
import "vue3-openlayers/styles.css";
26+
import "vue3-openlayers/styles.css"; // vue3-openlayers version < 1.0.0-*
27+
import "vue3-openlayers/dist/vue3-openlayers.css"; // vue3-openlayers version >= 1.0.0-*
2728

2829
const app = createApp(App);
2930
app.use(OpenLayersMap);

0 commit comments

Comments
 (0)