yarn vue3-snackbar 2.1.0
v2.1.0 - Border-style customisation

latest releases: 2.5.2, 2.5.1, 2.5.0...
3 years ago

Added three new props for use with the "border-style" messages:

/**
* The background colour opacity when using border-style messages
*/
backgroundOpacity: {
    type: [String, Number],
    default: 0.12,
    validator: (v) => {
	return !isNaN(parseFloat(v)) && isFinite(v);
    },
},
/**
* Background colour when using border-style messages
*/
backgroundColor: {
    type: String,
    default: "currentColor",
},
/**
* Base layor background colour when using border-style messages
*/
baseBackgroundColor: {
    type: String, 
    default: "#fff",
},

Don't miss a new vue3-snackbar release

NewReleases is sending notifications on new releases.