npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-route-query

v0.0.2

Published

自动更新路由参数的 Vue 指令, v-rq directive for automatically modifying router query

Downloads

6

Readme

vue-route-query

自动更新路由参数的 Vue 指令, v-rq directive for automatically modifying router query

Installing

Using npm:

npm install --save vue-route-query

Using yarn:

yarn add vue-route-query

Usage

Use directive:

// use directive
import VueRouteQuery from 'vue-route-query'
Vue.use(VueRouteQuery)
  • 默认用法:<div v-rq="query.page" /> 根据传入的值支持自动转换为 string,number,boolean 不支持其它类型,可通过修饰符修改值类型
  • 多个参数:<div v-rq:page="query.page" v-rq:size="query.size">
  • 修饰符 replace: <div v-rq:page.replace="query.page" /> replace 路由而不是 push
  • 修饰符 number: <div v-rq:page.number="query.page" /> 指定数据类型为 number
  • 修饰符 boolean: <div v-rq:enable.boolean="query.enable" /> 指定数据类型为 boolean

Example:

<template>
  <div style="padding: 50px">
    <el-pagination
      v-rq="page"
      v-rq:size.replace="pageSize"
      :current-page.sync="page"
      :page-size.sync="pageSize"
      :page-sizes="[10, 20, 50, 100]"
      layout="total, sizes, prev, pager, next"
      :total="1000"
      @current-change="handleCurrentChange"
      @size-change="handleSizeChange"
    >
    </el-pagination>
    <el-table :data="tableData" style="width: 100%">
      <el-table-column prop="date" label="日期" width="180"> </el-table-column>
      <el-table-column prop="name" label="姓名" width="180"> </el-table-column>
      <el-table-column prop="address" label="地址"> </el-table-column>
    </el-table>
  </div>
</template>

<script>
export default {
  name: 'Home',
  data() {
    return {
      page: 1,
      pageSize: 10,
      tableData: [],
    }
  },
  created() {
    console.log('created: page,size is ', this.page, this.pageSize)
    // this.getData() can not getData on created
  },
  mounted() {
    console.log('mounted: page,size is ', this.page, this.pageSize)
    this.getData() // you can getData on mounted
  },
  methods: {
    getData() {
      const tableData = []
      for (let i = 0; i < this.pageSize; i++) {
        tableData.push({
          date: `2016-05-${i + this.page * this.pageSize}`,
          name: '王小虎',
          address: `上海市普陀区金沙江路 ${i + this.page * this.pageSize} 弄`,
        })
      }
      this.tableData = tableData
    },
    handleSizeChange() {
      this.page = 1
      this.getData()
    },
    handleCurrentChange() {
      this.getData()
    },
  },
}
</script>