File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 31
31
* [ Built With] ( #built-with )
32
32
* [ Getting Started] ( #getting-started )
33
33
* [ Installation] ( #installation )
34
+ * [ Default Import] ( #default-import )
35
+ * [ Browser] ( #browser )
34
36
* [ Usage] ( #usage )
35
37
* [ Roadmap] ( #roadmap )
36
38
* [ Contributing] ( #contributing )
@@ -64,6 +66,32 @@ To get a local copy up and running follow these simple steps.
64
66
npm install vue-tailwindcss-typeahead
65
67
```
66
68
69
+ ### Default Import
70
+
71
+ Install the component:
72
+
73
+ ``` javascript
74
+ import Vue from ' vue'
75
+ import VueTailwindcssTypeahead from ' @/vue-tailwindcsscss-typeahead.vue' ;
76
+
77
+ Vue .use (VueTailwindcssTypeahead)
78
+ ```
79
+
80
+
81
+ ### Browser
82
+
83
+ ``` html
84
+ <link rel =" stylesheet" href =" vue-tailwindcss-typeahead/dist/vue-tailwindcss-typeahead.css" />
85
+
86
+ <script src =" vue.js" ></script >
87
+ <script src =" vue-tailwindcss-typeahead/dist/vue-tailwindcss-typeahead.min.js" ></script >
88
+ ```
89
+
90
+ If Vue is detected, the plugin will be installed automatically. If not, install the component:
91
+
92
+ ``` javascript
93
+ Vue .use (VueTailwindcssTypeahead)
94
+ ```
67
95
68
96
69
97
<!-- USAGE EXAMPLES -->
You can’t perform that action at this time.
0 commit comments