-
Notifications
You must be signed in to change notification settings - Fork 16
still valid with vue #7
Comments
Hi,
|
I did try that but it had issues finding its dependencies, both external and in the src directory. But if that would work, or not, the main one should work either with vue or vue/dist/vue if you ask me |
I have the exact same issue, @robbiemu , do you have solution yet? |
same problem. |
@ArnoldGitHub no actually I moved on. I can get it to load but the calendar doesn't look right. To load it: import DatePicker from 'vue-material-datepicker/src/Datepicker.vue' 2 set up your project to handle scss as a style language specification. In your webpack config, add options to your .vue file handler, to conform to the pattern: module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
// vue-loader options
loaders: {
scss: 'style-loader!css-loader!sass-loader'
}
}
},
... Optionally, also support {
test: /\.scss$/,
loader: ['style-loader', 'css-loader', 'sass-loader']
}
|
I'm getting:
here's my package.json dependencies:
and I mount it with:
ps> I tried aliasing in
vue: 'vue/dist/vue.js'
in my webpack config and it is still breakingThe text was updated successfully, but these errors were encountered: