UNPKG
@ace_tao/vue-confirm
Version:
latest (1.0.1)
1.0.1
1.0.0
基于vue插件发布
@ace_tao/vue-confirm
/
src
/
index.js
15 lines
(11 loc)
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
Vue
from
'vue'
;
import
App
from
'./App.vue'
;
import
Comfirm
from
'./packages/confirm/index.js'
;
Vue
.
use
(
Comfirm
);
new
Vue
({
el
:
'#app'
,
template
:
'<App />'
,
components
: {
App
} });