【发布时间】:2018-05-02 02:54:47
【问题描述】:
我想将此toastr-library 连接到我的组件中:
我的组件.vue
<script>
import toastr from 'toastr';
export default {
mounted(){
toastr.success('Hello from toastr!');
}
}
</script>
<template>
<div>
Template for my-component.vue here.
</div>
</template>
<style>
/* HOW TO IMPORT `toastr.css` FROM NODE_MODULES HERE?
</style>
如何从 node_modules 目录连接库的 css?
【问题讨论】:
-
@import url("unpkg.com/vue-toastr-2/dist/vue-toastr-2.min.css")
标签: css webpack vue.js vuejs2 vue-component