This repository was archived by the owner on Mar 26, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +26
-25
lines changed Expand file tree Collapse file tree 3 files changed +26
-25
lines changed Original file line number Diff line number Diff line change 1
1
run :
2
- yarn serve
2
+ yarn start
3
3
4
4
build-docker-local :
5
5
docker build --build-arg BUILD_MODE=development --progress=plain -t calendar_ui:local .
Original file line number Diff line number Diff line change 3
3
"version" : " 0.1.0" ,
4
4
"private" : true ,
5
5
"scripts" : {
6
- "serve " : " vue-cli-service serve" ,
6
+ "start " : " vue-cli-service serve" ,
7
7
"build" : " vue-cli-service build" ,
8
8
"lint" : " vue-cli-service lint" ,
9
9
"serve:standalone" : " vue-cli-service serve --mode standalone"
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<header >
3
- <button
4
- v-if =" this.$store.state.page"
5
- class =" btn btn-primary date options"
6
- @click ="
7
- () => {
8
- if (this.$store.state.page) showCalendar = !showCalendar;
9
- }
10
- "
11
- >
12
- {{ this.formatDate(this.date) }}
13
- <span v-if =" !showCalendar" class =" material-symbols-sharp" >
14
- expand_more</span
15
- >
16
- <span v-else class =" material-symbols-sharp" > expand_less </span >
17
- </button >
18
- <div v-else class =" date" >Твой ФФ!</div >
19
- <div
20
- v-if =" showCalendar && this.$store.state.page"
21
- class =" date-nav"
22
- v-click-outside ="
3
+ <div class =" date" v-click-outside ="
23
4
() => {
24
5
this.showCalendar = false;
25
6
}
26
- "
27
- >
28
- <DatePicker class =" calendar" v-model =" date" />
7
+ " >
8
+ <button
9
+ v-if =" this.$store.state.page"
10
+ class =" btn btn-primary date options"
11
+ @click ="
12
+ () => {
13
+ if (this.$store.state.page) showCalendar = !showCalendar;
14
+ }
15
+ "
16
+ >
17
+ {{ this.formatDate(this.date) }}
18
+ <span v-if =" !showCalendar" class =" material-symbols-sharp" >
19
+ expand_more
20
+ </span >
21
+ <span v-else class =" material-symbols-sharp" > expand_less </span >
22
+ </button >
23
+ <div v-else class =" date" >Твой ФФ!</div >
24
+ <div
25
+ v-if =" showCalendar && this.$store.state.page"
26
+ class =" date-nav"
27
+ >
28
+ <DatePicker class =" calendar" v-model =" date" />
29
+ </div >
29
30
</div >
30
31
<button
31
32
class =" btn btn-primary options"
You can’t perform that action at this time.
0 commit comments