Hi I have a question about the significance of Cramer's V.

I calculated the Carmer's V by using

Code:
tab v1 v2, V
where v1 and v2 are nominal variables.

Then, the result is below

Code:
                               v2
       v1  |        1          2          3  |     Total
-----------+---------------------------------+----------
         1 |       366        284        151 |       801
         2 |       335        715        225 |     1,275
         3 |       131        216        279 |       626
-----------+---------------------------------+----------
     Total |       832      1,215        655 |     2,702

               Cramér's V =   0.2323
Here, I want to check the significance of the Cramer's V.
I found that "the p-value for the significance of V is the same one that is calculated using the Pearson's chi-squared test".
(the resource is here https://en.wikipedia.org/wiki/Cram%C3%A9r's_V)

So, I ran the command below

Code:
tab v1 v2, V chi2
And, the result is here


Code:
                               v2
       v1  |        1          2          3  |     Total
-----------+---------------------------------+----------
         1 |       366        284        151 |       801
         2 |       335        715        225 |     1,275
         3 |       131        216        279 |       626
-----------+---------------------------------+----------
     Total |       832      1,215        655 |     2,702

          Pearson chi2(4) = 291.5302   Pr = 0.000
               Cramér's V =   0.2323
My question is whether Pr=0.000 in the result can be used as the significance of the Cramer's V.

Thank you for your time spending to read this question.