-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvue.code-snippets
50 lines (50 loc) · 1.06 KB
/
vue.code-snippets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"新页面": {
"prefix": "adp",
"body": [
"<template>",
"</template>",
"<script lang=\"ts\">",
"import { ref, defineComponent } from 'vue'",
"export default defineComponent({",
" name: '$1',",
" setup() {",
" return {",
" }",
" },",
"})",
"</script>",
"<style lang=\"less\" scoped>",
"</style>",
""
],
"description": "新组件"
},
"新Store": {
"prefix": "adm",
"body": [
"import { Commit } from 'vuex'",
"const state = {",
" demo: '',",
"}",
"type IState = typeof state",
"const module = {",
" namespaced: true,",
" state,",
" getters: {},",
" mutations: {",
" MDemo(state: IState, playload: string) {",
" state.demo = playload",
" },",
" },",
" actions: {",
" async ADemo({ commit }: { commit: Commit }) {",
" commit('MDemo', '')",
" },",
" },",
"}",
"export default module",
""
]
}
}