Write the Code. Change the World.

3月 25

在使用 <style scoped>,我们可以保护其他元素不受该样式的影响。如果我们附加动态元素,我们应该使用 parent-class /deep/ current-class。 但是我如何通过SCSS使用它呢:

<style scoped lang="scss">

::v-deep .frame {
}

</style>
3月 14

 # 新增一个 index 参数(方便浏览器刷新)
 const value = 3

 this.$router.push({
     path: this.$route.path,
     query: { ...this.$route.query, index: value }
 })