-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Your Name
committed
Dec 29, 2020
1 parent
490fc24
commit 4ee7fe0
Showing
6 changed files
with
77 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<template> | ||
<div class="base onlearncontent"> | ||
<h4 class="on_text">布尔值也可作为比较的结果:</h4> | ||
<highcode :language="'javascript'"> let isGreater = 4 > 1;</highcode> | ||
<highcode :language="'javascript'"> alert( isGreater ); // true(比较的结果是 "yes")</highcode> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
data() { | ||
return {} | ||
} | ||
} | ||
</script> | ||
|
||
<style scoped lang="scss"></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<template> | ||
<div class="main"> | ||
|
||
<v-selecttop @showAnaly="showAnaly"></v-selecttop> | ||
|
||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
methods:{ | ||
showAnaly(index,data){ | ||
console.log(index,data) | ||
} | ||
}, | ||
data() { | ||
return { | ||
showindex:0 | ||
} | ||
}, | ||
} | ||
</script> | ||
|
||
<style scoped lang="scss"> | ||
</style> |