使用nuxt js从插件文件中所需的节点模块导入css

问题描述 投票:0回答:1

要将全屏按钮添加到我的宣传单地图到nuxt中,我已经安装了leaflet.fullscreen软件包,并且已经编辑了插件leaflet.js,如下所示:

    import Vue from "vue";
    import { LMap, LTileLayer, LMarker, LPolyline } from "vue2-leaflet";
    require("leaflet-routing-machine");
    require("lrm-graphhopper");
    require("leaflet.fullscreen");

所以我可以在主模板中使用它:

    <template>
     <div>
       <section class="search__page">
         <div id="map-wrap" class="map__wrapper"></div>
       </section>
      </div>
    </template>

    <script>
      import Tmap from "@/utils/TripMap.js";

      export default {
        mounted() {
          this.initTmap();
        },
        data() {
          return {
            mainMap: null,
          },
        methods: {
          initTmap() {
            this.mainMap = new Tmap();
            this.mainMap.load();
          }
        }
      }
    </script>

我的班级看起来像这样:

    export default class Tmap {
        constructor() {
            this.map = null;
        }
        load) {
            this.map = L.map("map-wrap", {
            fullscreenControl: true,
            fullscreenControlOptions: {
                position: "topleft"
            }).setView([46.7227062, 2.5046503], 6);
            L.tileLayer("http://{s}.tile.osm.org/{z}/{x}/{y}.png", {
                maxZoom: 18,
                attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>, &copy;TRIP'
            }).addTo(this.map);
        }

        addMarkerOnClick() {
            this.map.addEventListener("click", ev => {
                L.marker(ev.latlng).addTo(this.map);
            });
        }
        getBounds() {
            return this.map.getBounds();
        }
    }

所以在我的主要组件中,我不知道如何导入与此全屏插件相关联的CSS。我试过了:

    <style>
        @import "~/node_modules/leaflet.fullscreen/Control.FullScreen.css";
    </style>

可以,但是显然不是这样做的好方法。知道如何正确处理吗?

css vue.js leaflet nuxt.js
1个回答
1
投票

通过快速的网络研究,我会说您应该能够访问如下样式:

@import "~leaflet/dist/leaflet.css";

当您在nuxt.config.js中注册全局样式时,应用程序将仅加载一次。由于node_modules路径,我认为您的构建所花的时间比平时多。

// nuxt.config.js
css: ['~/assets/styles/global.css'],

您也可以尝试nuxt resource loader

© www.soinside.com 2019 - 2024. All rights reserved.