Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mould-vuecli3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lhfe
mould-vuecli3
Commits
9f73aa2a
Commit
9f73aa2a
authored
Aug 26, 2020
by
lilei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
video-cutter add
parent
c27a76ae
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
49 additions
and
4 deletions
+49
-4
index.vue
src/components/sideNav/index.vue
+1
-1
videoPlayer.vue
src/components/videoCutter/videoPlayer.vue
+13
-0
index.js
src/router/index.js
+3
-3
videoCutter.vue
src/views/videoCutter.vue
+32
-0
No files found.
src/components/sideNav/index.vue
View file @
9f73aa2a
...
...
@@ -2,7 +2,7 @@
<div
class=
"comp-sidenav"
>
<router-link
to=
"/"
>
Home
</router-link>
<router-link
to=
"/about"
>
About
</router-link>
<router-link
to=
"/
bao1"
>
bao1
</router-link>
<router-link
to=
"/
cutter"
>
cutter
</router-link>
<router-link
to=
"/bao2"
>
bao2
</router-link>
</div>
</
template
>
...
...
src/
views/bao1
.vue
→
src/
components/videoCutter/videoPlayer
.vue
View file @
9f73aa2a
<
template
>
<div
class=
"
comp-bao1
"
>
bao1
<div
class=
"
video-player
"
>
<video></video>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
},
created
()
{},
mounted
()
{}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
/* @import url(); 引入css类 */
</
style
>
<
style
lang=
"scss"
scoped
></
style
>
src/router/index.js
View file @
9f73aa2a
...
...
@@ -19,9 +19,9 @@ const routes = [
component
:
()
=>
import
(
/* webpackChunkName: "about" */
'../views/About.vue'
)
},
{
path
:
'/
bao1
'
,
name
:
'
Bao1
'
,
component
:
()
=>
import
(
/* webpackChunkName: "bao1" */
'../views/
bao1
.vue'
)
path
:
'/
cutter
'
,
name
:
'
Cutter
'
,
component
:
()
=>
import
(
/* webpackChunkName: "bao1" */
'../views/
videoCutter
.vue'
)
},
{
path
:
'/bao2'
,
...
...
src/views/videoCutter.vue
0 → 100644
View file @
9f73aa2a
<
template
>
<div
class=
"video-cutter"
>
<div
class=
"video-content"
>
<video-player></video-player>
</div>
<div></div>
<div></div>
<div></div>
</div>
</
template
>
<
script
>
import
VideoPlayer
from
'@/components/videoCutter/videoPlayer.vue'
export
default
{
components
:
{
VideoPlayer
},
data
()
{
return
{}
},
created
()
{},
mounted
()
{}
}
</
script
>
<
style
scoped
lang=
"scss"
>
/* @import url(); 引入css类 */
.video-cutter
{
width
:
100%
;
height
:
100%
;
}
</
style
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment