vue-nt-toast 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
vue-nt-toast
|
|
2
2
|
================
|
|
3
|
+

|
|
4
|
+

|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+

|
|
10
|
+
|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
|
|
3
14
|
`vue-nt-toast` is a JavaScript notification system library. It is made available through the installation of the plugin in the Vue project.
|
|
4
15
|
|
|
5
16
|
It is designed to operate outside the application (the top layer) so as not to affect the application's layer system as much as possible, and provides status indications of "success", "risk", "information", "attention", and "important" depending on the type of content.
|
|
@@ -24,8 +35,8 @@ You can set multiple options across the system, including theme, location, and s
|
|
|
24
35
|
Import { createApp } from “vue”;
|
|
25
36
|
// import module
|
|
26
37
|
import NtToast from “vue-nt-toast”;
|
|
27
|
-
|
|
28
|
-
import “vue-nt-toast/
|
|
38
|
+
// import style css or use yours
|
|
39
|
+
import “vue-nt-toast/toast.css”;
|
|
29
40
|
|
|
30
41
|
const app = createApp(App)
|
|
31
42
|
|